mirror of
https://github.com/jxpeng98/obsidian-to-NotionNext
synced 2026-07-30 00:48:36 +08:00
Added auto shell
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
node update-version.js $1
|
||||||
git tag -a $1 -m $1
|
git tag -a $1 -m $1
|
||||||
git push origin $1
|
git push origin $1
|
||||||
26
update-version.js
Normal file
26
update-version.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// update package.json version
|
||||||
|
import fs from 'fs';
|
||||||
|
|
||||||
|
const packageJson = JSON.parse(fs.readFileSync('./package.json', 'utf8'));
|
||||||
|
|
||||||
|
console.log(packageJson.version);
|
||||||
|
|
||||||
|
|
||||||
|
// get node args
|
||||||
|
const args = process.argv.slice(2);
|
||||||
|
|
||||||
|
packageJson.version = args[0];
|
||||||
|
|
||||||
|
console.log(packageJson.version);
|
||||||
|
|
||||||
|
|
||||||
|
// write package.json
|
||||||
|
fs.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2));
|
||||||
|
|
||||||
|
// read manifest.json
|
||||||
|
const manifestJson = JSON.parse(fs.readFileSync('./manifest.json', 'utf8'));
|
||||||
|
|
||||||
|
manifestJson.version = args[0];
|
||||||
|
|
||||||
|
// write manifest.json
|
||||||
|
fs.writeFileSync('./manifest.json', JSON.stringify(manifestJson, null, 2));
|
||||||
Reference in New Issue
Block a user