feat: enums和vuex构建配置提示

This commit is contained in:
wanchun 2022-03-29 14:26:05 +08:00
parent abffcdb9a1
commit 972518ff9c
9 changed files with 74 additions and 60 deletions

View File

@ -29,5 +29,6 @@
"peerDependencies": { "peerDependencies": {
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"vue": "^3.0.5" "vue": "^3.0.5"
} },
"typings": "./types.d.ts"
} }

View File

@ -1,11 +1,12 @@
import { readFileSync } from 'fs'; import { readFileSync } from 'fs';
import { join } from 'path'; import { join } from 'path';
import { name } from '../package.json';
const namespace = 'plugin-enums'; const namespace = 'plugin-enums';
export default (api) => { export default (api) => {
const { const {
utils: { Mustache } utils: { Mustache },
} = api; } = api;
api.describe({ api.describe({
@ -14,8 +15,8 @@ export default (api) => {
schema(joi) { schema(joi) {
return joi.object(); return joi.object();
}, },
onChange: api.ConfigChangeType.regenerateTmpFiles onChange: api.ConfigChangeType.regenerateTmpFiles,
} },
}); });
const absoluteFilePath = join(namespace, 'core.js'); const absoluteFilePath = join(namespace, 'core.js');
@ -24,25 +25,27 @@ export default (api) => {
const enums = api.config.enums || {}; const enums = api.config.enums || {};
api.writeTmpFile({ api.writeTmpFile({
path: absoluteFilePath, path: absoluteFilePath,
content: Mustache.render( content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), REPLACE_ENUMS: JSON.stringify(enums),
{ }),
REPLACE_ENUMS: JSON.stringify(enums)
}
)
}); });
api.copyTmpFiles({ api.copyTmpFiles({
namespace, namespace,
path: join(__dirname, 'runtime'), path: join(__dirname, 'runtime'),
ignore: ['.tpl'] ignore: ['.tpl'],
}); });
}); });
api.addPluginExports(() => [ api.addPluginExports(() => [
{ {
specifiers: ['enums'], specifiers: ['enums'],
source: absoluteFilePath source: absoluteFilePath,
} },
]); ]);
api.addConfigType(() => ({
source: name,
build: ['EnumsBuildConfig'],
}));
}; };

8
packages/fes-plugin-enums/types.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
export interface EnumsBuildConfig {
enums: {
[key: string]: [string | number, string | number][]
}
}

View File

@ -16,39 +16,31 @@ export default (cwd, args) => {
'!**/types/**', '!**/types/**',
'!**/fixtures/**', '!**/fixtures/**',
'!**/examples/**', '!**/examples/**',
'!**/*.d.ts' '!**/*.d.ts',
].filter(Boolean), ].filter(Boolean),
moduleFileExtensions: [ moduleFileExtensions: [
'js', 'js',
'jsx', 'jsx',
'json', 'json',
// tell Jest to handle *.vue files // tell Jest to handle *.vue files
'vue' 'vue',
], ],
transform: { transform: {
// process *.vue files with vue-jest // process *.vue files with vue-jest
'^.+\\.vue$': require.resolve('vue3-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'),
'^.+\\.jsx?$': require.resolve( '^.+\\.jsx?$': require.resolve('../helpers/transformers/javascript'),
'../helpers/transformers/javascript'
)
}, },
transformIgnorePatterns: ['/node_modules/'], transformIgnorePatterns: ['/node_modules/'],
// support the same @ -> src alias mapping in source code // support the same @ -> src alias mapping in source code
moduleNameMapper: { moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1' '^@/(.*)$': '<rootDir>/src/$1',
}, },
testMatch: [ testMatch: [`**/tests/**/*.(${testMatchTypes.join('|')}).[jt]s?(x)`, '**/__tests__/**/*.[jt]s?(x)'],
`**/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/', testURL: 'http://localhost/',
watchPlugins: [ watchPlugins: [require.resolve('jest-watch-typeahead/filename'), require.resolve('jest-watch-typeahead/testname')],
require.resolve('jest-watch-typeahead/filename'), verbose: true,
require.resolve('jest-watch-typeahead/testname')
],
verbose: true
}; };
}; };

View File

@ -1,4 +1,3 @@
import assert from 'assert'; import assert from 'assert';
import { join } from 'path'; import { join } from 'path';
import { existsSync } from 'fs'; import { existsSync } from 'fs';
@ -28,7 +27,10 @@ function getCommandOptiton() {
} }
export default function (api) { export default function (api) {
const { utils: { mergeConfig }, cwd } = api; const {
utils: { mergeConfig },
cwd,
} = api;
api.registerCommand({ api.registerCommand({
command: 'test', command: 'test',
@ -55,11 +57,7 @@ export default function (api) {
// Merge configs // Merge configs
// user config and args config could have value function for modification // user config and args config could have value function for modification
const config = mergeConfig( const config = mergeConfig(createDefaultConfig(cwd, args), packageJestConfig, userJestConfig);
createDefaultConfig(cwd, args),
packageJestConfig,
userJestConfig
);
args.debug && logger.log(`final config: ${JSON.stringify(config)}`); args.debug && logger.log(`final config: ${JSON.stringify(config)}`);
// Generate jest options // Generate jest options
@ -85,14 +83,14 @@ export default function (api) {
// 必须是单独的 config 配置,值为 string否则不生效 // 必须是单独的 config 配置,值为 string否则不生效
// @ts-ignore // @ts-ignore
config: JSON.stringify(config), config: JSON.stringify(config),
...argsConfig ...argsConfig,
}, },
[cwd] [cwd],
); );
args.debug && logger.log(result); args.debug && logger.log(result);
// Throw error when run failed // Throw error when run failed
assert(result.results.success, 'Test with jest failed'); assert(result.results.success, 'Test with jest failed');
} },
}); });
} }

View File

@ -1,4 +1,3 @@
module.exports = { module.exports = {
copy: ['runtime'] copy: ['runtime'],
}; };

View File

@ -33,5 +33,6 @@
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"vue": "^3.0.5", "vue": "^3.0.5",
"vuex": "^4.0.0" "vuex": "^4.0.0"
} },
"typings": "./types.d.ts"
} }

View File

@ -2,13 +2,14 @@ import { readFileSync } from 'fs';
import { join } from 'path'; import { join } from 'path';
import { winPath } from '@fesjs/utils'; import { winPath } from '@fesjs/utils';
import { parseStore } from './helper'; import { parseStore } from './helper';
import { name } from '../package.json';
const namespace = 'plugin-vuex'; const namespace = 'plugin-vuex';
export default (api) => { export default (api) => {
const { const {
paths, paths,
utils: { Mustache } utils: { Mustache },
} = api; } = api;
api.describe({ api.describe({
@ -17,8 +18,8 @@ export default (api) => {
schema(joi) { schema(joi) {
return joi.object(); return joi.object();
}, },
onChange: api.ConfigChangeType.regenerateTmpFiles onChange: api.ConfigChangeType.regenerateTmpFiles,
} },
}); });
const absCoreFilePath = join(namespace, 'core.js'); const absCoreFilePath = join(namespace, 'core.js');
@ -30,34 +31,36 @@ export default (api) => {
// 文件写出 // 文件写出
api.writeTmpFile({ api.writeTmpFile({
path: absCoreFilePath, path: absCoreFilePath,
content: Mustache.render( content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), IMPORT_MODULES: store.importModules.join('\n'),
{ IMPORT_PLUGINS: store.importPlugins.join('\n'),
IMPORT_MODULES: store.importModules.join('\n'), MODULES: `{ ${store.modules.join(', ')} }`,
IMPORT_PLUGINS: store.importPlugins.join('\n'), PLUGINS: `[${store.plugins.join(', ')}]`,
MODULES: `{ ${store.modules.join(', ')} }`, MUTATION_TYPES: JSON.stringify(store.MUTATION_TYPES),
PLUGINS: `[${store.plugins.join(', ')}]`, ACTION_TYPES: JSON.stringify(store.ACTION_TYPES),
MUTATION_TYPES: JSON.stringify(store.MUTATION_TYPES), GETTER_TYPES: JSON.stringify(store.GETTER_TYPES),
ACTION_TYPES: JSON.stringify(store.ACTION_TYPES), VUEX_CONFIG: JSON.stringify(vuexConfig),
GETTER_TYPES: JSON.stringify(store.GETTER_TYPES), }),
VUEX_CONFIG: JSON.stringify(vuexConfig)
}
)
}); });
api.copyTmpFiles({ api.copyTmpFiles({
namespace, namespace,
path: join(__dirname, 'runtime'), path: join(__dirname, 'runtime'),
ignore: ['.tpl'] ignore: ['.tpl'],
}); });
}); });
api.addPluginExports(() => [ api.addPluginExports(() => [
{ {
specifiers: ['MUTATION_TYPES', 'ACTION_TYPES', 'GETTER_TYPES', 'store'], specifiers: ['MUTATION_TYPES', 'ACTION_TYPES', 'GETTER_TYPES', 'store'],
source: absCoreFilePath source: absCoreFilePath,
} },
]); ]);
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
api.addConfigType(() => ({
source: name,
build: ['VuexBuildConfig'],
}));
}; };

9
packages/fes-plugin-vuex/types.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
export interface VuexBuildConfig {
vuex: {
strict: boolean;
devtools: boolean;
}
}