mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
13 lines
394 B
JavaScript
13 lines
394 B
JavaScript
const fs = require('fs');
|
|
|
|
const version = process.argv[2];
|
|
if (!version) {
|
|
console.log('No version passed, skipping manifest update');
|
|
process.exit(0);
|
|
}
|
|
|
|
const manifest = JSON.parse(fs.readFileSync('manifest.json', 'utf-8'));
|
|
manifest.version = version;
|
|
fs.writeFileSync('manifest.json', JSON.stringify(manifest, null, 2));
|
|
|
|
console.log(`Updated manifest.json to version ${version}`); |