mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
11 lines
367 B
JavaScript
11 lines
367 B
JavaScript
const fs = require('fs');
|
|
|
|
const version = process.env.TGT_RELEASE_VERSION;
|
|
const newVersion = version.replace('v', '');
|
|
|
|
const packageFile = fs.readFileSync('package/package.json', { encoding: 'utf8' });
|
|
|
|
const newFileContent = packageFile.replace(/"version":\s+"(.*)",$/gm, `"version": "${newVersion}",`);
|
|
|
|
fs.writeFileSync('package/package.json', newFileContent);
|