mirror of
https://gitlab.com/RemixDev/deemix-gui.git
synced 2024-12-28 02:26:13 +00:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
const { execSync } = require('child_process')
|
|
const fs = require('fs')
|
|
|
|
let package = JSON.parse(fs.readFileSync('package.json'))
|
|
package.version = "0.0.0"
|
|
fs.writeFileSync('package.json', JSON.stringify(package, null, 2)+"\n")
|