mirror of
https://github.com/coder/code-server.git
synced 2025-08-01 10:56:25 +08:00
Include version when building
This commit is contained in:
@ -3,6 +3,7 @@ const fs = require("fs");
|
||||
const a = process.argv[2];
|
||||
const b = process.argv[3];
|
||||
const out = process.argv[4];
|
||||
const json = JSON.parse(process.argv[5] || "{}");
|
||||
|
||||
const aJson = JSON.parse(fs.readFileSync(a));
|
||||
const bJson = JSON.parse(fs.readFileSync(b));
|
||||
@ -15,4 +16,5 @@ delete aJson.optionalDependencies;
|
||||
fs.writeFileSync(out, JSON.stringify({
|
||||
...aJson,
|
||||
...bJson,
|
||||
...json,
|
||||
}, null, 2));
|
||||
|
Reference in New Issue
Block a user