1 Star 0 Fork 526

宇宙无敌酷 / NocoBase

forked from NocoBase / NocoBase 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.fatherrc.ts 776 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenos 提交于 2021-12-03 11:42 . fix: priority of build
import { readdirSync } from 'fs';
import { join } from 'path';
// utils must build before core
// runtime must build before renderer-react
const headPkgs = [
'utils',
'database',
'resourcer',
'actions',
'client',
'server',
];
const tailPkgs = [];
const otherPkgs = readdirSync(join(__dirname, 'packages')).filter(
(pkg) => {
return !['father-build', 'app'].includes(pkg) && pkg.charAt(0) !== '.' && !headPkgs.includes(pkg) && !tailPkgs.includes(pkg)
},
);
let pkgs = [];
if (process.argv.length > 2) {
pkgs = process.argv;
pkgs.shift();
pkgs.shift();
} else {
pkgs = [...headPkgs, ...otherPkgs, ...tailPkgs];
}
console.log(pkgs);
export default {
target: 'node',
cjs: { type: 'babel', lazy: true },
// disableTypeCheck: true,
pkgs,
};
TypeScript
1
https://gitee.com/xyzwangwen/nocobase.git
git@gitee.com:xyzwangwen/nocobase.git
xyzwangwen
nocobase
NocoBase
develop

搜索帮助

53164aa7 5694891 3bd8fe86 5694891