forked from fanruan/fineui
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.
11 lines
353 B
11 lines
353 B
const { execSync } = require("child_process"); |
|
const { resolve } = require("path"); |
|
const { writeFileSync } = require("fs"); |
|
|
|
const packageJSON = require("../../package.json"); |
|
|
|
packageJSON.version = `2.0.${new Date().getTime()}`; |
|
|
|
writeFileSync(resolve(__dirname, "../../package.json"), JSON.stringify(packageJSON, null, 2)); |
|
|
|
execSync("npm publish");
|
|
|