.
This commit is contained in:
parent
0c42c23669
commit
352c71af65
185 changed files with 20165 additions and 0 deletions
7
frontend/obsidian-plugin/version-bump.mjs
Normal file
7
frontend/obsidian-plugin/version-bump.mjs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { readFileSync, writeFileSync } from "fs";
|
||||
|
||||
const targetVersion = process.env.npm_package_version;
|
||||
|
||||
let manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
|
||||
manifest.version = targetVersion;
|
||||
writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t"));
|
||||
Loading…
Add table
Add a link
Reference in a new issue