feat: package script

This commit is contained in:
cha0s 2021-01-17 14:34:37 -06:00
parent c15da9a1ed
commit 3a769a850e
2 changed files with 38 additions and 0 deletions

37
package.js Normal file
View File

@ -0,0 +1,37 @@
const {execSync} = require('child_process');
const {join} = require('path');
const fs = require('fs-extra')
const cwd = process.cwd();
const [exe, script, package] = process.argv;
const path = join(cwd, 'packages', package);
try {
fs.accessSync(path);
console.error(`Package '${package}' already exists, aborting.`);
process.exit(1);
}
catch (error) {}
const [scope] = require('./package.json').name.split('/');
const name = [scope, package].join('/');
console.log(`Copying new project '${name}' to ${path}...`);
fs.copySync(
join(cwd, 'config/package'),
path,
);
const json = {
...require(join(path, 'package.json')),
name,
};
fs.writeFileSync(
join(path, 'package.json'),
JSON.stringify(json, null, 2),
);
const exec = (cmd) => execSync(cmd, {cwd: path, stdio: 'inherit'});
console.log(`Installing...`);
exec('yarn');
console.log(`Testing...`);
exec('yarn run test');

View File

@ -8,6 +8,7 @@
"forcepub": "lerna run forcepub",
"link": "lerna run link",
"lint": "lerna run lint",
"package": "node ./package.js",
"test": "lerna run test --no-bail -- --silent",
"unlink": "lerna run unlink",
"watch": "lerna run watch --parallel"