5 Star 23 Fork 5

Gitee 极速下载/Parceljs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/parcel-bundler/parcel
克隆/下载
verdaccioPublish.js 763 Bytes
一键复制 编辑 原始数据 按行查看 历史
const {execSync} = require('child_process');
const fs = require('fs');
const path = require('path');
const run = cmd => execSync(cmd, {encoding: 'utf8', cwd: __dirname});
const bin = cmd => path.join(__dirname, 'node_modules/.bin', cmd);
const sha = run('git rev-parse --short HEAD').trim();
const version = JSON.parse(
fs.readFileSync(
path.join(__dirname, 'packages/core/core/package.json'),
'utf8',
),
).version;
try {
run(
`${bin(
'lerna',
)} version -y --no-push --no-git-tag-version --exact ${version}-${sha}`,
);
run(`git add .`);
run(`git commit -m 'Temp' --no-verify`);
run(
`${bin('lerna')} publish -y --registry http://localhost:4000 from-package`,
);
} finally {
execSync(`git reset --hard ${sha}`);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Parceljs.git
git@gitee.com:mirrors/Parceljs.git
mirrors
Parceljs
Parceljs
v2

搜索帮助

0d507c66 1850385 C8b1a773 1850385