mirror of https://github.com/nocodb/nocodb
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.
12 lines
378 B
12 lines
378 B
3 years ago
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
const packageJson = JSON.parse(fs.readFileSync(path.join(__dirname,'..','package.json'), 'utf8'));
|
||
|
|
||
|
const version = packageJson.version.replace(/\.(\d+)$/, (_, v) => {
|
||
|
return `.${++v}`
|
||
|
});
|
||
|
|
||
|
packageJson.version = version;
|
||
|
|
||
|
fs.writeFileSync(path.join(__dirname,'..','package.json'), JSON.stringify(packageJson, null, 2));
|