Browse Source

chore: 增加脚本

es6
iapyang 4 years ago
parent
commit
44d31ab160
  1. 15
      lib/postpublish/postpublish.js

15
lib/postpublish/postpublish.js

@ -0,0 +1,15 @@
const { resolve } = require("path");
const { execSync } = require("child_process");
const { writeFileSync } = require("fs");
const packageJSON = require("../../package.json");
packageJSON.name = "fineui";
packageJSON.publishConfig.registry = 'https://registry.npmjs.org';
writeFileSync(resolve(__dirname, "../../package.json"), JSON.stringify(packageJSON, null, 2));
execSync('git add dist/');
execSync('git add package.json');
execSync(`git diff-index --quiet HEAD || git commit -am "auto upgrade version to ${packageJSON.version}"`);
Loading…
Cancel
Save