fix: 处理create-fes-app中丢失.npmrc问题 & 升级plugin-jest支持tsx? (#216)

This commit is contained in:
听海 2023-09-14 14:15:10 +08:00 committed by GitHub
parent 5a3bb6bef3
commit a882a2919a
24 changed files with 907 additions and 1380 deletions

View File

@ -1,12 +1,10 @@
import { Generator } from '@fesjs/utils'; import { Generator } from '@fesjs/utils';
export default class AppGenerator extends Generator { export default class AppGenerator extends Generator {
constructor({ constructor({ cwd, args, path, targetDir }) {
cwd, args, path, targetDir
}) {
super({ super({
cwd, cwd,
args args,
}); });
this.path = path; this.path = path;
this.targetDir = targetDir; this.targetDir = targetDir;
@ -15,10 +13,10 @@ export default class AppGenerator extends Generator {
async writing() { async writing() {
this.copyDirectory({ this.copyDirectory({
context: { context: {
version: require('../../package.json').version version: require('../../package.json').version,
}, },
path: this.path, path: this.path,
target: this.targetDir target: this.targetDir,
}); });
} }
} }

View File

@ -21,7 +21,7 @@
"@fesjs/plugin-layout": "^5.0.0", "@fesjs/plugin-layout": "^5.0.0",
"@fesjs/plugin-model": "^3.0.0", "@fesjs/plugin-model": "^3.0.0",
"@fesjs/plugin-enums": "^3.0.0", "@fesjs/plugin-enums": "^3.0.0",
"@fesjs/fes-design": "^0.7.23", "@fesjs/fes-design": "^0.8.0",
"@fesjs/builder-webpack": "^3.0.0", "@fesjs/builder-webpack": "^3.0.0",
"vue": "^3.2.47", "vue": "^3.2.47",
"core-js": "^3.29.1" "core-js": "^3.29.1"

View File

@ -1,10 +1,8 @@
const babelJest = require('babel-jest').default; const babelJest = require('babel-jest').default;
module.exports = babelJest.createTransformer({ module.exports = babelJest.createTransformer({
presets: [ presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
['@babel/preset-env', { targets: { node: 'current' } }]
],
plugins: ['@vue/babel-plugin-jsx'], plugins: ['@vue/babel-plugin-jsx'],
babelrc: false, babelrc: false,
configFile: false configFile: false,
}); });

View File

@ -36,12 +36,12 @@
"@babel/core": "^7.21.3", "@babel/core": "^7.21.3",
"@babel/preset-env": "^7.15.0", "@babel/preset-env": "^7.15.0",
"@vue/babel-plugin-jsx": "^1.0.6", "@vue/babel-plugin-jsx": "^1.0.6",
"babel-jest": "^27.0.6", "babel-jest": "^29.0.0",
"jest": "^27.0.6", "jest": "^29.0.0",
"jest-transform-stub": "^2.0.0", "jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^2.2.2", "jest-watch-typeahead": "^2.2.2",
"ts-jest": "^27.0.4", "ts-jest": "^29.1.0",
"typescript": "^5.0.4", "typescript": "^5.0.4",
"vue3-jest": "^27.0.0-alpha.1" "@vue/vue3-jest": "^29.2.0"
} }
} }

View File

@ -9,8 +9,8 @@ export default (cwd, args) => {
const hasSrc = existsSync(join(cwd, 'src')); const hasSrc = existsSync(join(cwd, 'src'));
return { return {
collectCoverageFrom: [ collectCoverageFrom: [
'index.{js,jsx,vue}', 'index.{js,ts,jsx,tsx,vue}',
hasSrc && 'src/**/*.{js,jsx,vue}', hasSrc && 'src/**/*.{js,ts,jsx,tsx,vue}',
'!**/.fes/**', '!**/.fes/**',
'!**/typings/**', '!**/typings/**',
'!**/types/**', '!**/types/**',
@ -21,16 +21,25 @@ export default (cwd, args) => {
moduleFileExtensions: [ moduleFileExtensions: [
'js', 'js',
'jsx', 'jsx',
'ts',
'tsx',
'json', 'json',
// tell Jest to handle *.vue files // tell Jest to handle *.vue files
'vue', 'vue',
], ],
transform: { transform: {
// process *.vue files with vue-jest
'^.+\\.vue$': require.resolve('vue3-jest'),
'.+\\.(css|styl|less|sass|scss|jpg|jpeg|png|svg|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '.+\\.(css|styl|less|sass|scss|jpg|jpeg|png|svg|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
require.resolve('jest-transform-stub'), require.resolve('jest-transform-stub'),
// process *.vue files with vue-jest
'^.+\\.vue$': require.resolve('@vue/vue3-jest'),
'^.+\\.jsx?$': require.resolve('../helpers/transformers/javascript'), '^.+\\.jsx?$': require.resolve('../helpers/transformers/javascript'),
// process *.ts files with ts-jest
'^.+\\.tsx?$': [
require.resolve('ts-jest'),
{
// ts-jest configuration goes here
},
],
}, },
transformIgnorePatterns: ['/node_modules/'], transformIgnorePatterns: ['/node_modules/'],
// support the same @ -> src alias mapping in source code // support the same @ -> src alias mapping in source code
@ -39,7 +48,9 @@ export default (cwd, args) => {
}, },
testMatch: [`**/tests/**/*.(${testMatchTypes.join('|')}).[jt]s?(x)`, '**/__tests__/**/*.[jt]s?(x)'], testMatch: [`**/tests/**/*.(${testMatchTypes.join('|')}).[jt]s?(x)`, '**/__tests__/**/*.[jt]s?(x)'],
// https://github.com/facebook/jest/issues/6766 // https://github.com/facebook/jest/issues/6766
testURL: 'http://localhost/', testEnvironmentOptions: {
url: 'http://localhost/',
},
watchPlugins: [require.resolve('jest-watch-typeahead/filename'), require.resolve('jest-watch-typeahead/testname')], watchPlugins: [require.resolve('jest-watch-typeahead/filename'), require.resolve('jest-watch-typeahead/testname')],
verbose: true, verbose: true,
}; };

View File

@ -12,611 +12,535 @@ export const docs = 'Documentation: https://jestjs.io/';
export const options = { export const options = {
all: { all: {
description: description:
'The opposite of `onlyChanged`. If `onlyChanged` is set by ' 'The opposite of `onlyChanged`. If `onlyChanged` is set by ' +
+ 'default, running jest with `--all` will force Jest to run all tests ' 'default, running jest with `--all` will force Jest to run all tests ' +
+ 'instead of running only tests related to changed files.', 'instead of running only tests related to changed files.',
type: 'boolean' type: 'boolean',
}, },
automock: { automock: {
description: 'Automock all files by default.', description: 'Automock all files by default.',
type: 'boolean' type: 'boolean',
}, },
bail: { bail: {
alias: 'b', alias: 'b',
description: description: 'Exit the test suite immediately after `n` number of failing tests.',
'Exit the test suite immediately after `n` number of failing tests.', type: 'boolean',
type: 'boolean'
}, },
browser: { browser: {
description: description:
'Respect the "browser" field in package.json ' 'Respect the "browser" field in package.json ' +
+ 'when resolving modules. Some packages export different versions ' 'when resolving modules. Some packages export different versions ' +
+ 'based on whether they are operating in node.js or a browser.', 'based on whether they are operating in node.js or a browser.',
type: 'boolean' type: 'boolean',
}, },
cache: { cache: {
description: description: 'Whether to use the transform cache. Disable the cache ' + 'using --no-cache.',
'Whether to use the transform cache. Disable the cache ' type: 'boolean',
+ 'using --no-cache.',
type: 'boolean'
}, },
cacheDirectory: { cacheDirectory: {
description: description: 'The directory where Jest should store its cached ' + ' dependency information.',
'The directory where Jest should store its cached ' type: 'string',
+ ' dependency information.',
type: 'string'
}, },
changedFilesWithAncestor: { changedFilesWithAncestor: {
description: description: 'Runs tests related to the current changes and the changes made in the ' + 'last commit. Behaves similarly to `--onlyChanged`.',
'Runs tests related to the current changes and the changes made in the ' type: 'boolean',
+ 'last commit. Behaves similarly to `--onlyChanged`.',
type: 'boolean'
}, },
changedSince: { changedSince: {
description: description:
'Runs tests related to the changes since the provided branch. If the ' 'Runs tests related to the changes since the provided branch. If the ' +
+ 'current branch has diverged from the given branch, then only changes ' 'current branch has diverged from the given branch, then only changes ' +
+ 'made locally will be tested. Behaves similarly to `--onlyChanged`.', 'made locally will be tested. Behaves similarly to `--onlyChanged`.',
nargs: 1, nargs: 1,
type: 'string' type: 'string',
}, },
ci: { ci: {
description: description:
'Whether to run Jest in continuous integration (CI) mode. ' 'Whether to run Jest in continuous integration (CI) mode. ' +
+ 'This option is on by default in most popular CI environments. It will ' 'This option is on by default in most popular CI environments. It will ' +
+ 'prevent snapshots from being written unless explicitly requested.', 'prevent snapshots from being written unless explicitly requested.',
type: 'boolean' type: 'boolean',
}, },
clearCache: { clearCache: {
description: description: 'Clears the configured Jest cache directory and then exits. ' + 'Default directory can be found by calling jest --showConfig',
'Clears the configured Jest cache directory and then exits. ' type: 'boolean',
+ 'Default directory can be found by calling jest --showConfig',
type: 'boolean'
}, },
clearMocks: { clearMocks: {
description: description: 'Automatically clear mock calls and instances between every ' + 'test. Equivalent to calling jest.clearAllMocks() between each test.',
'Automatically clear mock calls and instances between every ' type: 'boolean',
+ 'test. Equivalent to calling jest.clearAllMocks() between each test.',
type: 'boolean'
}, },
collectCoverage: { collectCoverage: {
description: 'Alias for --coverage.', description: 'Alias for --coverage.',
type: 'boolean' type: 'boolean',
}, },
collectCoverageFrom: { collectCoverageFrom: {
description: description: 'A glob pattern relative to <rootDir> matching the files that coverage ' + 'info needs to be collected from.',
'A glob pattern relative to <rootDir> matching the files that coverage ' type: 'string',
+ 'info needs to be collected from.',
type: 'string'
}, },
collectCoverageOnlyFrom: { collectCoverageOnlyFrom: {
description: 'Explicit list of paths coverage will be restricted to.', description: 'Explicit list of paths coverage will be restricted to.',
string: true, string: true,
type: 'array' type: 'array',
}, },
color: { color: {
description: description: 'Forces test results output color highlighting (even if ' + 'stdout is not a TTY). Set to false if you would like to have no colors.',
'Forces test results output color highlighting (even if ' type: 'boolean',
+ 'stdout is not a TTY). Set to false if you would like to have no colors.',
type: 'boolean'
}, },
colors: { colors: {
description: 'Alias for `--color`.', description: 'Alias for `--color`.',
type: 'boolean' type: 'boolean',
}, },
config: { config: {
alias: 'c', alias: 'c',
description: description:
'The path to a jest config file specifying how to find ' 'The path to a jest config file specifying how to find ' +
+ 'and execute tests. If no rootDir is set in the config, the directory ' 'and execute tests. If no rootDir is set in the config, the directory ' +
+ 'containing the config file is assumed to be the rootDir for the project.' 'containing the config file is assumed to be the rootDir for the project.' +
+ 'This can also be a JSON encoded value which Jest will use as configuration.', 'This can also be a JSON encoded value which Jest will use as configuration.',
type: 'string' type: 'string',
}, },
coverage: { coverage: {
description: description: 'Indicates that test coverage information should be ' + 'collected and reported in the output.',
'Indicates that test coverage information should be ' type: 'boolean',
+ 'collected and reported in the output.',
type: 'boolean'
}, },
coverageDirectory: { coverageDirectory: {
description: 'The directory where Jest should output its coverage files.', description: 'The directory where Jest should output its coverage files.',
type: 'string' type: 'string',
}, },
coveragePathIgnorePatterns: { coveragePathIgnorePatterns: {
description: description:
'An array of regexp pattern strings that are matched ' 'An array of regexp pattern strings that are matched ' +
+ 'against all file paths before executing the test. If the file path' 'against all file paths before executing the test. If the file path' +
+ 'matches any of the patterns, coverage information will be skipped.', 'matches any of the patterns, coverage information will be skipped.',
string: true, string: true,
type: 'array' type: 'array',
}, },
coverageProvider: { coverageProvider: {
choices: ['babel', 'v8'], choices: ['babel', 'v8'],
description: 'Select between Babel and V8 to collect coverage' description: 'Select between Babel and V8 to collect coverage',
}, },
coverageReporters: { coverageReporters: {
description: description: 'A list of reporter names that Jest uses when writing ' + 'coverage reports. Any istanbul reporter can be used.',
'A list of reporter names that Jest uses when writing '
+ 'coverage reports. Any istanbul reporter can be used.',
string: true, string: true,
type: 'array' type: 'array',
}, },
coverageThreshold: { coverageThreshold: {
description: description: 'A JSON string with which will be used to configure ' + 'minimum threshold enforcement for coverage results',
'A JSON string with which will be used to configure ' type: 'string',
+ 'minimum threshold enforcement for coverage results',
type: 'string'
}, },
debug: { debug: {
description: 'Print debugging info about your jest config.', description: 'Print debugging info about your jest config.',
type: 'boolean' type: 'boolean',
}, },
detectLeaks: { detectLeaks: {
description: description:
'**EXPERIMENTAL**: Detect memory leaks in tests. After executing a ' '**EXPERIMENTAL**: Detect memory leaks in tests. After executing a ' +
+ 'test, it will try to garbage collect the global object used, and fail ' 'test, it will try to garbage collect the global object used, and fail ' +
+ 'if it was leaked', 'if it was leaked',
type: 'boolean' type: 'boolean',
}, },
detectOpenHandles: { detectOpenHandles: {
description: description: 'Print out remaining open handles preventing Jest from exiting at the ' + 'end of a test run. Implies `runInBand`.',
'Print out remaining open handles preventing Jest from exiting at the ' type: 'boolean',
+ 'end of a test run. Implies `runInBand`.',
type: 'boolean'
}, },
env: { env: {
description: description:
'The test environment used for all tests. This can point to ' 'The test environment used for all tests. This can point to ' +
+ 'any file or node module. Examples: `jsdom`, `node` or ' 'any file or node module. Examples: `jsdom`, `node` or ' +
+ '`path/to/my-environment.js`', '`path/to/my-environment.js`',
type: 'string' type: 'string',
}, },
errorOnDeprecated: { errorOnDeprecated: {
description: 'Make calling deprecated APIs throw helpful error messages.', description: 'Make calling deprecated APIs throw helpful error messages.',
type: 'boolean' type: 'boolean',
}, },
expand: { expand: {
alias: 'e', alias: 'e',
description: 'Use this flag to show full diffs instead of a patch.', description: 'Use this flag to show full diffs instead of a patch.',
type: 'boolean' type: 'boolean',
}, },
filter: { filter: {
description: description:
'Path to a module exporting a filtering function. This method receives ' 'Path to a module exporting a filtering function. This method receives ' +
+ 'a list of tests which can be manipulated to exclude tests from ' 'a list of tests which can be manipulated to exclude tests from ' +
+ 'running. Especially useful when used in conjunction with a testing ' 'running. Especially useful when used in conjunction with a testing ' +
+ 'infrastructure to filter known broken tests.', 'infrastructure to filter known broken tests.',
type: 'string' type: 'string',
}, },
findRelatedTests: { findRelatedTests: {
description: description:
'Find related tests for a list of source files that were ' 'Find related tests for a list of source files that were ' +
+ 'passed in as arguments. Useful for pre-commit hook integration to run ' 'passed in as arguments. Useful for pre-commit hook integration to run ' +
+ 'the minimal amount of tests necessary.', 'the minimal amount of tests necessary.',
type: 'boolean' type: 'boolean',
}, },
forceExit: { forceExit: {
description: description:
'Force Jest to exit after all tests have completed running. ' 'Force Jest to exit after all tests have completed running. ' +
+ 'This is useful when resources set up by test code cannot be ' 'This is useful when resources set up by test code cannot be ' +
+ 'adequately cleaned up.', 'adequately cleaned up.',
type: 'boolean' type: 'boolean',
}, },
globalSetup: { globalSetup: {
description: 'The path to a module that runs before All Tests.', description: 'The path to a module that runs before All Tests.',
type: 'string' type: 'string',
}, },
globalTeardown: { globalTeardown: {
description: 'The path to a module that runs after All Tests.', description: 'The path to a module that runs after All Tests.',
type: 'string' type: 'string',
}, },
globals: { globals: {
description: description: 'A JSON string with map of global variables that need ' + 'to be available in all test environments.',
'A JSON string with map of global variables that need ' type: 'string',
+ 'to be available in all test environments.',
type: 'string'
}, },
haste: { haste: {
description: description: 'A JSON string with map of variables for the haste module system',
'A JSON string with map of variables for the haste module system', type: 'string',
type: 'string'
}, },
init: { init: {
description: 'Generate a basic configuration file', description: 'Generate a basic configuration file',
type: 'boolean' type: 'boolean',
}, },
injectGlobals: { injectGlobals: {
description: 'Should Jest inject global variables or not', description: 'Should Jest inject global variables or not',
type: 'boolean' type: 'boolean',
}, },
json: { json: {
description: description: 'Prints the test results in JSON. This mode will send all ' + 'other test output and user messages to stderr.',
'Prints the test results in JSON. This mode will send all ' type: 'boolean',
+ 'other test output and user messages to stderr.',
type: 'boolean'
}, },
lastCommit: { lastCommit: {
description: description: 'Run all tests affected by file changes in the last commit made. ' + 'Behaves similarly to `--onlyChanged`.',
'Run all tests affected by file changes in the last commit made. ' type: 'boolean',
+ 'Behaves similarly to `--onlyChanged`.',
type: 'boolean'
}, },
listTests: { listTests: {
description: description:
'Lists all tests Jest will run given the arguments and ' 'Lists all tests Jest will run given the arguments and ' +
+ 'exits. Most useful in a CI system together with `--findRelatedTests` ' 'exits. Most useful in a CI system together with `--findRelatedTests` ' +
+ 'to determine the tests Jest will run based on specific files', 'to determine the tests Jest will run based on specific files',
type: 'boolean' type: 'boolean',
}, },
logHeapUsage: { logHeapUsage: {
description: description: 'Logs the heap usage after every test. Useful to debug ' + 'memory leaks. Use together with `--runInBand` and `--expose-gc` in ' + 'node.',
'Logs the heap usage after every test. Useful to debug ' type: 'boolean',
+ 'memory leaks. Use together with `--runInBand` and `--expose-gc` in '
+ 'node.',
type: 'boolean'
}, },
maxConcurrency: { maxConcurrency: {
description: description: 'Specifies the maximum number of tests that are allowed to run' + 'concurrently. This only affects tests using `test.concurrent`.',
'Specifies the maximum number of tests that are allowed to run' type: 'number',
+ 'concurrently. This only affects tests using `test.concurrent`.',
type: 'number'
}, },
maxWorkers: { maxWorkers: {
alias: 'w', alias: 'w',
description: description:
'Specifies the maximum number of workers the worker-pool ' 'Specifies the maximum number of workers the worker-pool ' +
+ 'will spawn for running tests. This defaults to the number of the ' 'will spawn for running tests. This defaults to the number of the ' +
+ 'cores available on your machine. (its usually best not to override ' 'cores available on your machine. (its usually best not to override ' +
+ 'this default)', 'this default)',
type: 'string' type: 'string',
}, },
moduleDirectories: { moduleDirectories: {
description: description: 'An array of directory names to be searched recursively ' + "up from the requiring module's location.",
'An array of directory names to be searched recursively '
+ "up from the requiring module's location.",
string: true, string: true,
type: 'array' type: 'array',
}, },
moduleFileExtensions: { moduleFileExtensions: {
description: description:
'An array of file extensions your modules use. If you ' 'An array of file extensions your modules use. If you ' +
+ 'require modules without specifying a file extension, these are the ' 'require modules without specifying a file extension, these are the ' +
+ 'extensions Jest will look for. ', 'extensions Jest will look for. ',
string: true, string: true,
type: 'array' type: 'array',
}, },
moduleNameMapper: { moduleNameMapper: {
description: description:
'A JSON string with a map from regular expressions to ' 'A JSON string with a map from regular expressions to ' +
+ 'module names or to arrays of module names that allow to stub ' 'module names or to arrays of module names that allow to stub ' +
+ 'out resources, like images or styles with a single module', 'out resources, like images or styles with a single module',
type: 'string' type: 'string',
}, },
modulePathIgnorePatterns: { modulePathIgnorePatterns: {
description: description:
'An array of regexp pattern strings that are matched ' 'An array of regexp pattern strings that are matched ' +
+ 'against all module paths before those paths are to be considered ' 'against all module paths before those paths are to be considered ' +
+ '"visible" to the module loader.', '"visible" to the module loader.',
string: true, string: true,
type: 'array' type: 'array',
}, },
modulePaths: { modulePaths: {
description: description:
'An alternative API to setting the NODE_PATH env variable, ' 'An alternative API to setting the NODE_PATH env variable, ' +
+ 'modulePaths is an array of absolute paths to additional locations to ' 'modulePaths is an array of absolute paths to additional locations to ' +
+ 'search when resolving modules.', 'search when resolving modules.',
string: true, string: true,
type: 'array' type: 'array',
}, },
noStackTrace: { noStackTrace: {
description: 'Disables stack trace in test results output', description: 'Disables stack trace in test results output',
type: 'boolean' type: 'boolean',
}, },
notify: { notify: {
description: 'Activates notifications for test results.', description: 'Activates notifications for test results.',
type: 'boolean' type: 'boolean',
}, },
notifyMode: { notifyMode: {
description: 'Specifies when notifications will appear for test results.', description: 'Specifies when notifications will appear for test results.',
type: 'string' type: 'string',
}, },
onlyChanged: { onlyChanged: {
alias: 'o', alias: 'o',
description: description:
'Attempts to identify which tests to run based on which ' 'Attempts to identify which tests to run based on which ' +
+ "files have changed in the current repository. Only works if you're " "files have changed in the current repository. Only works if you're " +
+ 'running tests in a git or hg repository at the moment.', 'running tests in a git or hg repository at the moment.',
type: 'boolean' type: 'boolean',
}, },
onlyFailures: { onlyFailures: {
alias: 'f', alias: 'f',
description: 'Run tests that failed in the previous execution.', description: 'Run tests that failed in the previous execution.',
type: 'boolean' type: 'boolean',
}, },
outputFile: { outputFile: {
description: description: 'Write test results to a file when the --json option is ' + 'also specified.',
'Write test results to a file when the --json option is ' type: 'string',
+ 'also specified.',
type: 'string'
}, },
passWithNoTests: { passWithNoTests: {
description: description: 'Will not fail if no tests are found (for example while using `--testPathPattern`.)',
'Will not fail if no tests are found (for example while using `--testPathPattern`.)', type: 'boolean',
type: 'boolean'
}, },
preset: { preset: {
description: "A preset that is used as a base for Jest's configuration.", description: "A preset that is used as a base for Jest's configuration.",
type: 'string' type: 'string',
}, },
prettierPath: { prettierPath: {
description: 'The path to the "prettier" module used for inline snapshots.', description: 'The path to the "prettier" module used for inline snapshots.',
type: 'string' type: 'string',
}, },
projects: { projects: {
description: description: 'A list of projects that use Jest to run all tests of all ' + 'projects in a single instance of Jest.',
'A list of projects that use Jest to run all tests of all '
+ 'projects in a single instance of Jest.',
string: true, string: true,
type: 'array' type: 'array',
}, },
reporters: { reporters: {
description: 'A list of custom reporters for the test suite.', description: 'A list of custom reporters for the test suite.',
string: true, string: true,
type: 'array' type: 'array',
}, },
resetMocks: { resetMocks: {
description: description: 'Automatically reset mock state between every test. ' + 'Equivalent to calling jest.resetAllMocks() between each test.',
'Automatically reset mock state between every test. ' type: 'boolean',
+ 'Equivalent to calling jest.resetAllMocks() between each test.',
type: 'boolean'
}, },
resetModules: { resetModules: {
description: description: 'If enabled, the module registry for every test file will ' + 'be reset before running each individual test.',
'If enabled, the module registry for every test file will ' type: 'boolean',
+ 'be reset before running each individual test.',
type: 'boolean'
}, },
resolver: { resolver: {
description: 'A JSON string which allows the use of a custom resolver.', description: 'A JSON string which allows the use of a custom resolver.',
type: 'string' type: 'string',
}, },
restoreMocks: { restoreMocks: {
description: description:
'Automatically restore mock state and implementation between every test. ' 'Automatically restore mock state and implementation between every test. ' + 'Equivalent to calling jest.restoreAllMocks() between each test.',
+ 'Equivalent to calling jest.restoreAllMocks() between each test.', type: 'boolean',
type: 'boolean'
}, },
rootDir: { rootDir: {
description: description: 'The root directory that Jest should scan for tests and ' + 'modules within.',
'The root directory that Jest should scan for tests and ' type: 'string',
+ 'modules within.',
type: 'string'
}, },
roots: { roots: {
description: description: 'A list of paths to directories that Jest should use to ' + 'search for files in.',
'A list of paths to directories that Jest should use to '
+ 'search for files in.',
string: true, string: true,
type: 'array' type: 'array',
}, },
runInBand: { runInBand: {
alias: 'i', alias: 'i',
description: description:
'Run all tests serially in the current process (rather than ' 'Run all tests serially in the current process (rather than ' +
+ 'creating a worker pool of child processes that run tests). This ' 'creating a worker pool of child processes that run tests). This ' +
+ 'is sometimes useful for debugging, but such use cases are pretty ' 'is sometimes useful for debugging, but such use cases are pretty ' +
+ 'rare.', 'rare.',
type: 'boolean' type: 'boolean',
}, },
runTestsByPath: { runTestsByPath: {
description: description:
'Used when provided patterns are exact file paths. This avoids ' 'Used when provided patterns are exact file paths. This avoids ' +
+ 'converting them into a regular expression and matching it against ' 'converting them into a regular expression and matching it against ' +
+ 'every single file.', 'every single file.',
type: 'boolean' type: 'boolean',
}, },
runner: { runner: {
description: description: "Allows to use a custom runner instead of Jest's default test runner.",
"Allows to use a custom runner instead of Jest's default test runner.", type: 'string',
type: 'string'
}, },
selectProjects: { selectProjects: {
description: description: 'Run only the tests of the specified projects.' + 'Jest uses the attribute `displayName` in the configuration to identify each project.',
'Run only the tests of the specified projects.'
+ 'Jest uses the attribute `displayName` in the configuration to identify each project.',
string: true, string: true,
type: 'array' type: 'array',
}, },
setupFiles: { setupFiles: {
description: description: 'A list of paths to modules that run some code to configure or ' + 'set up the testing environment before each test. ',
'A list of paths to modules that run some code to configure or '
+ 'set up the testing environment before each test. ',
string: true, string: true,
type: 'array' type: 'array',
}, },
setupFilesAfterEnv: { setupFilesAfterEnv: {
description: description: 'A list of paths to modules that run some code to configure or ' + 'set up the testing framework before each test ',
'A list of paths to modules that run some code to configure or '
+ 'set up the testing framework before each test ',
string: true, string: true,
type: 'array' type: 'array',
}, },
showConfig: { showConfig: {
description: 'Print your jest config and then exits.', description: 'Print your jest config and then exits.',
type: 'boolean' type: 'boolean',
}, },
silent: { silent: {
description: 'Prevent tests from printing messages through the console.', description: 'Prevent tests from printing messages through the console.',
type: 'boolean' type: 'boolean',
}, },
skipFilter: { skipFilter: {
description: description: 'Disables the filter provided by --filter. Useful for CI jobs, or ' + 'local enforcement when fixing tests.',
'Disables the filter provided by --filter. Useful for CI jobs, or ' type: 'boolean',
+ 'local enforcement when fixing tests.',
type: 'boolean'
}, },
snapshotSerializers: { snapshotSerializers: {
description: description: 'A list of paths to snapshot serializer modules Jest should ' + 'use for snapshot testing.',
'A list of paths to snapshot serializer modules Jest should '
+ 'use for snapshot testing.',
string: true, string: true,
type: 'array' type: 'array',
}, },
testEnvironment: { testEnvironment: {
description: 'Alias for --env', description: 'Alias for --env',
type: 'string' type: 'string',
}, },
testEnvironmentOptions: { testEnvironmentOptions: {
description: description: 'Test environment options that will be passed to the testEnvironment. ' + 'The relevant options depend on the environment.',
'Test environment options that will be passed to the testEnvironment. ' type: 'string', // Object
+ 'The relevant options depend on the environment.',
type: 'string' // Object
}, },
testFailureExitCode: { testFailureExitCode: {
description: 'Exit code of `jest` command if the test run failed', description: 'Exit code of `jest` command if the test run failed',
type: 'string' // number type: 'string', // number
}, },
testLocationInResults: { testLocationInResults: {
description: 'Add `location` information to the test results', description: 'Add `location` information to the test results',
type: 'boolean' type: 'boolean',
}, },
testMatch: { testMatch: {
description: 'The glob patterns Jest uses to detect test files.', description: 'The glob patterns Jest uses to detect test files.',
string: true, string: true,
type: 'array' type: 'array',
}, },
testNamePattern: { testNamePattern: {
alias: 't', alias: 't',
description: 'Run only tests with a name that matches the regex pattern.', description: 'Run only tests with a name that matches the regex pattern.',
type: 'string' type: 'string',
}, },
testPathIgnorePatterns: { testPathIgnorePatterns: {
description: description:
'An array of regexp pattern strings that are matched ' 'An array of regexp pattern strings that are matched ' +
+ 'against all test paths before executing the test. If the test path ' 'against all test paths before executing the test. If the test path ' +
+ 'matches any of the patterns, it will be skipped.', 'matches any of the patterns, it will be skipped.',
string: true, string: true,
type: 'array' type: 'array',
}, },
testPathPattern: { testPathPattern: {
description: description: 'A regexp pattern string that is matched against all tests ' + 'paths before executing the test.',
'A regexp pattern string that is matched against all tests '
+ 'paths before executing the test.',
string: true, string: true,
type: 'array' type: 'array',
}, },
testRegex: { testRegex: {
description: description: 'A string or array of string regexp patterns that Jest uses to detect test files.',
'A string or array of string regexp patterns that Jest uses to detect test files.',
string: true, string: true,
type: 'array' type: 'array',
}, },
testResultsProcessor: { testResultsProcessor: {
description: description:
'Allows the use of a custom results processor. ' 'Allows the use of a custom results processor. ' +
+ 'This processor must be a node module that exports ' 'This processor must be a node module that exports ' +
+ 'a function expecting as the first argument the result object.', 'a function expecting as the first argument the result object.',
type: 'string' type: 'string',
}, },
testRunner: { testRunner: {
description: description:
'Allows to specify a custom test runner. The default is' 'Allows to specify a custom test runner. The default is' +
+ ' `jest-circus/runner`. A path to a custom test runner can be provided:' ' `jest-circus/runner`. A path to a custom test runner can be provided:' +
+ ' `<rootDir>/path/to/testRunner.js`.', ' `<rootDir>/path/to/testRunner.js`.',
type: 'string' type: 'string',
}, },
testSequencer: { testSequencer: {
description: description:
'Allows to specify a custom test sequencer. The default is ' 'Allows to specify a custom test sequencer. The default is ' +
+ '`@jest/test-sequencer`. A path to a custom test sequencer can be ' '`@jest/test-sequencer`. A path to a custom test sequencer can be ' +
+ 'provided: `<rootDir>/path/to/testSequencer.js`', 'provided: `<rootDir>/path/to/testSequencer.js`',
type: 'string' type: 'string',
}, },
testTimeout: { testTimeout: {
description: 'This option sets the default timeouts of test cases.', description: 'This option sets the default timeouts of test cases.',
type: 'number' type: 'number',
}, },
testURL: { testURL: {
description: 'This option sets the URL for the jsdom environment.', description: 'This option sets the URL for the jsdom environment.',
type: 'string' type: 'string',
}, },
timers: { timers: {
description: description: 'Setting this value to fake allows the use of fake timers ' + 'for functions such as setTimeout.',
'Setting this value to fake allows the use of fake timers ' type: 'string',
+ 'for functions such as setTimeout.',
type: 'string'
}, },
transform: { transform: {
description: description: 'A JSON string which maps from regular expressions to paths ' + 'to transformers.',
'A JSON string which maps from regular expressions to paths ' type: 'string',
+ 'to transformers.',
type: 'string'
}, },
transformIgnorePatterns: { transformIgnorePatterns: {
description: description: 'An array of regexp pattern strings that are matched ' + 'against all source file paths before transformation.',
'An array of regexp pattern strings that are matched '
+ 'against all source file paths before transformation.',
string: true, string: true,
type: 'array' type: 'array',
}, },
unmockedModulePathPatterns: { unmockedModulePathPatterns: {
description: description:
'An array of regexp pattern strings that are matched ' 'An array of regexp pattern strings that are matched ' +
+ 'against all modules before the module loader will automatically ' 'against all modules before the module loader will automatically ' +
+ 'return a mock for them.', 'return a mock for them.',
string: true, string: true,
type: 'array' type: 'array',
}, },
updateSnapshot: { updateSnapshot: {
alias: 'u', alias: 'u',
description: description:
'Use this flag to re-record snapshots. ' 'Use this flag to re-record snapshots. ' +
+ 'Can be used together with a test suite pattern or with ' 'Can be used together with a test suite pattern or with ' +
+ '`--testNamePattern` to re-record snapshot for test matching ' '`--testNamePattern` to re-record snapshot for test matching ' +
+ 'the pattern', 'the pattern',
type: 'boolean' type: 'boolean',
}, },
useStderr: { useStderr: {
description: 'Divert all output to stderr.', description: 'Divert all output to stderr.',
type: 'boolean' type: 'boolean',
}, },
verbose: { verbose: {
description: description: 'Display individual test results with the test suite hierarchy.',
'Display individual test results with the test suite hierarchy.', type: 'boolean',
type: 'boolean'
}, },
version: { version: {
alias: 'v', alias: 'v',
description: 'Print the version and exit', description: 'Print the version and exit',
type: 'boolean' type: 'boolean',
}, },
watch: { watch: {
description: description:
'Watch files for changes and rerun tests related to ' 'Watch files for changes and rerun tests related to ' +
+ 'changed files. If you want to re-run all tests when a file has ' 'changed files. If you want to re-run all tests when a file has ' +
+ 'changed, use the `--watchAll` option.', 'changed, use the `--watchAll` option.',
type: 'boolean' type: 'boolean',
}, },
watchAll: { watchAll: {
description: description:
'Watch files for changes and rerun all tests. If you want ' 'Watch files for changes and rerun all tests. If you want ' +
+ 'to re-run only the tests related to the changed files, use the ' 'to re-run only the tests related to the changed files, use the ' +
+ '`--watch` option.', '`--watch` option.',
type: 'boolean' type: 'boolean',
}, },
watchPathIgnorePatterns: { watchPathIgnorePatterns: {
description: description:
'An array of regexp pattern strings that are matched ' 'An array of regexp pattern strings that are matched ' +
+ 'against all paths before trigger test re-run in watch mode. ' 'against all paths before trigger test re-run in watch mode. ' +
+ 'If the test path matches any of the patterns, it will be skipped.', 'If the test path matches any of the patterns, it will be skipped.',
string: true, string: true,
type: 'array' type: 'array',
}, },
watchman: { watchman: {
description: description: 'Whether to use watchman for file crawling. Disable using ' + '--no-watchman.',
'Whether to use watchman for file crawling. Disable using ' type: 'boolean',
+ '--no-watchman.', },
type: 'boolean'
}
}; };

View File

@ -32,7 +32,7 @@
}, },
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.1.2", "@fesjs/fes": "^3.1.2",
"@fesjs/fes-design": "^0.7.0", "@fesjs/fes-design": ">=0.7.0",
"vue": "^3.2.47", "vue": "^3.2.47",
"vue-router": "^4.0.1" "vue-router": "^4.0.1"
}, },

View File

@ -33,7 +33,7 @@
}, },
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.0.1", "@fesjs/fes": "^3.0.1",
"@fesjs/fes-design": "^0.7.0", "@fesjs/fes-design": ">=0.7.0",
"vue": "^3.2.47" "vue": "^3.2.47"
}, },
"typings": "./types.d.ts" "typings": "./types.d.ts"

View File

@ -44,10 +44,10 @@
}, },
"dependencies": { "dependencies": {
"vue": "^3.2.47", "vue": "^3.2.47",
"@fesjs/fes": "^3.0.0-rc.0", "@fesjs/fes": "^3.0.0",
"@fesjs/builder-vite": "^3.0.0-rc.4", "@fesjs/builder-vite": "^3.0.0",
"@fesjs/plugin-qiankun": "3.0.0-rc.0", "@fesjs/plugin-qiankun": "^3.0.0",
"@fesjs/fes-design": "^0.7.0" "@fesjs/fes-design": "^0.8.0"
}, },
"private": true "private": true
} }

View File

@ -43,11 +43,11 @@
"access": "public" "access": "public"
}, },
"dependencies": { "dependencies": {
"@fesjs/fes": "^3.0.0-rc.0", "@fesjs/fes": "^3.0.0",
"@fesjs/builder-vite": "^3.0.0-rc.4", "@fesjs/builder-vite": "^3.0.0",
"@fesjs/plugin-qiankun": "3.0.0-rc.0", "@fesjs/plugin-qiankun": "^3.0.0",
"vue": "^3.2.47", "vue": "^3.2.47",
"@fesjs/fes-design": "^0.7.0" "@fesjs/fes-design": "^0.8.0"
}, },
"private": true "private": true
} }

View File

@ -43,12 +43,12 @@
"access": "public" "access": "public"
}, },
"dependencies": { "dependencies": {
"@fesjs/fes": "^3.0.0-rc.0", "@fesjs/fes": "^3.0.0",
"@fesjs/builder-webpack": "^3.0.0-rc.5", "@fesjs/builder-webpack": "^3.0.0",
"@fesjs/plugin-qiankun": "3.0.0-rc.0", "@fesjs/plugin-qiankun": "^3.0.0",
"@fesjs/plugin-watermark": "3.0.0-rc.0", "@fesjs/plugin-watermark": "^3.0.0",
"vue": "^3.2.47", "vue": "^3.2.47",
"@fesjs/fes-design": "^0.7.0" "@fesjs/fes-design": "^0.8.0"
}, },
"private": true "private": true
} }

View File

@ -43,12 +43,12 @@
"access": "public" "access": "public"
}, },
"dependencies": { "dependencies": {
"@fesjs/fes": "^3.0.0-rc.0", "@fesjs/fes": "^3.0.0",
"@fesjs/builder-webpack": "^3.0.0-rc.5", "@fesjs/builder-webpack": "^3.0.0",
"@fesjs/plugin-qiankun": "3.0.0-rc.0", "@fesjs/plugin-qiankun": "^3.0.0",
"@fesjs/plugin-watermark": "3.0.0-rc.0", "@fesjs/plugin-watermark": "^3.0.0",
"vue": "^3.2.47", "vue": "^3.2.47",
"@fesjs/fes-design": "^0.7.0" "@fesjs/fes-design": "^0.8.0"
}, },
"private": true "private": true
} }

View File

@ -43,7 +43,7 @@
}, },
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^3.0.0", "@fesjs/fes": "^3.0.0",
"@fesjs/fes-design": "^0.7.20", "@fesjs/fes-design": ">=0.7.20",
"vue": "^3.2.47" "vue": "^3.2.47"
}, },
"typings": "./types.d.ts" "typings": "./types.d.ts"

View File

@ -46,7 +46,7 @@
"@fesjs/builder-vite": "workspace:*", "@fesjs/builder-vite": "workspace:*",
"@fesjs/builder-webpack": "workspace:*", "@fesjs/builder-webpack": "workspace:*",
"@fesjs/fes": "workspace:*", "@fesjs/fes": "workspace:*",
"@fesjs/fes-design": "^0.7.0", "@fesjs/fes-design": "^0.8.0",
"@fesjs/plugin-access": "workspace:*", "@fesjs/plugin-access": "workspace:*",
"@fesjs/plugin-enums": "workspace:*", "@fesjs/plugin-enums": "workspace:*",
"@fesjs/plugin-icon": "workspace:*", "@fesjs/plugin-icon": "workspace:*",

View File

@ -1,4 +1,4 @@
import sum from '@/utils/sum'; import sum from '@/utils/sum.ts';
test('adds 1 + 2 to equal 3', () => { test('adds 1 + 2 to equal 3', () => {
expect(sum(1, 2)).toBe(3); expect(sum(1, 2)).toBe(3);

View File

@ -61,7 +61,7 @@
"@fesjs/plugin-watermark": "workspace:*", "@fesjs/plugin-watermark": "workspace:*",
"@fesjs/plugin-windicss": "workspace:*", "@fesjs/plugin-windicss": "workspace:*",
"@fesjs/plugin-swc": "workspace:*", "@fesjs/plugin-swc": "workspace:*",
"@fesjs/fes-design": "^0.7.20", "@fesjs/fes-design": "^0.8.0",
"core-js": "3.29.1", "core-js": "3.29.1",
"pinia": "^2.0.33", "pinia": "^2.0.33",
"vue": "^3.2.47" "vue": "^3.2.47"

View File

@ -1,3 +0,0 @@
export default function sum(a, b) {
return a + b;
}

View File

@ -0,0 +1,3 @@
export default function sum(a: number, b: number) {
return a + b;
}

View File

@ -41,17 +41,16 @@ class Generator {
const absFile = join(opts.path, file); const absFile = join(opts.path, file);
if (statSync(absFile).isDirectory()) return; if (statSync(absFile).isDirectory()) return;
if (file.endsWith('.tpl')) { if (file.endsWith('.tpl')) {
this.copyTpl({ return this.copyTpl({
templatePath: absFile, templatePath: absFile,
target: join(opts.target, file.replace(/\.tpl$/, '')), target: join(opts.target, file.replace(/\.tpl$/, '')),
context: opts.context, context: opts.context,
}); });
} else {
console.log(`${chalk.green('Copy: ')} ${file}`);
const absTarget = join(opts.target, file);
mkdirp.sync(dirname(absTarget));
copyFileSync(absFile, absTarget);
} }
console.log(`${chalk.green('Copy: ')} ${file}`);
const absTarget = join(opts.target, file);
mkdirp.sync(dirname(absTarget));
copyFileSync(absFile, absTarget);
}); });
} }
} }

1627
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff