Archived
1
0

Get version from vscode's package.json

This commit is contained in:
Asher
2019-02-20 12:54:26 -06:00
parent 6b5f50cddf
commit bdd24081ab
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,2 @@
// TODO: obtain this in a reasonable way.
export default { name: "vscode", version: "1.31.1" };
import * as packageJson from "../../../../lib/vscode/package.json";
export default { name: "vscode", version: packageJson.version };