|
|
@@ -230,23 +230,28 @@
|
|
|
"build": "npm run build:webview && npm run vsix",
|
|
|
"build:webview": "cd webview-ui && npm run build",
|
|
|
"compile": "tsc -p . --outDir out && node esbuild.js",
|
|
|
- "install:all": "npm-run-all -p install-*",
|
|
|
- "install:ci": "npm install npm-run-all && npm run install:all",
|
|
|
+ "install:all": "npm install npm-run-all && npm run install:_all",
|
|
|
+ "install:_all": "npm-run-all -p install-*",
|
|
|
"install-extension": "npm install",
|
|
|
"install-webview-ui": "cd webview-ui && npm install",
|
|
|
"install-e2e": "cd e2e && npm install",
|
|
|
+ "install-benchmark": "cd benchmark && npm install",
|
|
|
"lint": "npm-run-all -p lint:*",
|
|
|
"lint:extension": "eslint src --ext ts",
|
|
|
"lint:webview-ui": "cd webview-ui && npm run lint",
|
|
|
"lint:e2e": "cd e2e && npm run lint",
|
|
|
+ "lint:benchmark": "cd benchmark && npm run lint",
|
|
|
"check-types": "npm-run-all -p check-types:*",
|
|
|
"check-types:extension": "tsc --noEmit",
|
|
|
"check-types:webview-ui": "cd webview-ui && npm run check-types",
|
|
|
"check-types:e2e": "cd e2e && npm run check-types",
|
|
|
+ "check-types:benchmark": "cd benchmark && npm run check-types",
|
|
|
"package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
|
|
|
"pretest": "npm run compile",
|
|
|
"dev": "cd webview-ui && npm run dev",
|
|
|
- "test": "jest && cd webview-ui && npm run test",
|
|
|
+ "test": "npm-run-all -p test:*",
|
|
|
+ "test:extension": "jest",
|
|
|
+ "test:webview": "cd webview-ui && npm run test",
|
|
|
"prepare": "husky",
|
|
|
"publish:marketplace": "vsce publish && ovsx publish",
|
|
|
"publish": "npm run build && changeset publish && npm install --package-lock-only",
|