13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
const fs = require('fs');
|
|
|
|
var packagejson = require('./package.json');
|
|
|
|
packagejson.build.publish = [{
|
|
url: "https://github.com/MuhammedKalkan/OpenLens/releases/download/Latest",
|
|
provider: "generic"
|
|
}];
|
|
|
|
packagejson.build.win.artifactName = "OpenLens.Setup.${version}.${ext}";
|
|
|
|
fs.writeFileSync('package.json', JSON.stringify(packagejson));
|