Commit 81a5f1a7 authored by yann300's avatar yann300 Committed by Aniket

replace package.json with updated version

parent 9925c986
......@@ -55,10 +55,7 @@ task('syncLibVersions', async function () {
libs.forEach(lib => {
const distPackageJSON = require(__dirname + '/dist/libs/' + lib + '/package.json')
const libVersion = distPackageJSON.version
let packageJSON = require(__dirname + '/libs/' + lib + '/package.json')
packageJSON.version = libVersion
fs.writeFileSync(__dirname + '/libs/' + lib + '/package.json', JSON.stringify(packageJSON, null, 2), 'utf8')
fs.writeFileSync(__dirname + '/libs/' + lib + '/package.json', JSON.stringify(distPackageJSON, null, 2), 'utf8')
})
await Promise.resolve();
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment