feat: 重新设计vue3版本的fes

This commit is contained in:
bac-joker 2020-11-02 09:51:40 +08:00
parent 560df66b33
commit a49f328088
801 changed files with 38117 additions and 105128 deletions

View File

@ -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
View 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
View File

@ -11,3 +11,6 @@ npm-debug.log
/packages/fes-doc/docs/.vuepress/dist
/packages/fes-template/package-lock.json
/.changelog
/packages/*/lib
/packages/*/dist

View File

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

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