mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-11-29 18:28:09 +08:00
feat: 重新设计vue3版本的fes
This commit is contained in:
parent
560df66b33
commit
a49f328088
@ -20,6 +20,7 @@ module.exports = {
|
||||
'class-methods-use-this': 'off',
|
||||
'no-restricted-syntax': 'off',
|
||||
'import/prefer-default-export': 'off',
|
||||
'import/no-unresolved': 'off'
|
||||
'import/no-unresolved': 'off',
|
||||
'no-continue': 'off'
|
||||
}
|
||||
};
|
||||
|
20
.fatherrc.js
Normal file
20
.fatherrc.js
Normal file
@ -0,0 +1,20 @@
|
||||
import { readdirSync } from 'fs';
|
||||
import { join } from 'path';
|
||||
|
||||
// utils must build before core
|
||||
// runtime must build before renderer-react
|
||||
const headPkgs = ['fes-runtime', 'fes-core'];
|
||||
const tailPkgs = [];
|
||||
// const otherPkgs = readdirSync(join(__dirname, 'packages')).filter(
|
||||
// (pkg) =>
|
||||
// pkg.charAt(0) !== '.' && !headPkgs.includes(pkg) && !tailPkgs.includes(pkg),
|
||||
// );
|
||||
|
||||
const otherPkgs = [];
|
||||
|
||||
export default {
|
||||
target: 'node',
|
||||
cjs: { type: 'babel', lazy: true },
|
||||
disableTypeCheck: true,
|
||||
pkgs: [...headPkgs, ...otherPkgs, ...tailPkgs],
|
||||
};
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -11,3 +11,6 @@ npm-debug.log
|
||||
/packages/fes-doc/docs/.vuepress/dist
|
||||
/packages/fes-template/package-lock.json
|
||||
/.changelog
|
||||
|
||||
/packages/*/lib
|
||||
/packages/*/dist
|
||||
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 370 KiB After Width: | Height: | Size: 370 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user