Fix some issues with packaging / scripts
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
"showOutput": "silent",
|
||||
|
||||
// we run the custom script "compile" as defined in package.json
|
||||
"args": ["install"], //, "--loglevel", "silent"],
|
||||
"args": ["compile"],
|
||||
|
||||
// The tsc compiler is started in watching mode
|
||||
"isWatching": true,
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
interface Foo {
|
||||
box : string;
|
||||
get() : string;
|
||||
};
|
||||
|
||||
var foo = {
|
||||
box: null,
|
||||
get: () => foo.box
|
||||
};
|
||||
|
||||
export = foo
|
||||
@@ -40,10 +40,10 @@
|
||||
},
|
||||
"preview": true,
|
||||
"scripts": {
|
||||
"vscode:prepublish": "tsc -p .",
|
||||
"prepublish": "tsc -p .",
|
||||
"clean": "rm -fr node_modules",
|
||||
"compile": "tsc -watch -p ./",
|
||||
"preinstall": "npm install ../commons-vscode && ../mvnw -f ../pom.xml -pl vscode-manifest-yaml -am clean package",
|
||||
"preinstall": "(cd ../commons-vscode ; npm install) && npm install ../commons-vscode && ../mvnw -f ../pom.xml -pl vscode-manifest-yaml -am clean package",
|
||||
"postinstall": "node ./node_modules/vscode/bin/install"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
Reference in New Issue
Block a user