You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
541 B
16 lines
541 B
4 years ago
|
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}"`);
|