mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-23 03:07:58 +00:00
* Introduce compilation error * Engineering - limit the tasks that we run * Limit available memory to simulate an OOM * Try to update the task * Remove the use of npm-run-all * Fix script * Another try * Try npm-run-all2 * Restore tasks, keep npm-run-all2 * Switch from npm-run-all to npm-run-all2 * Revert changes that were used for testing
24 lines
734 B
JSON
24 lines
734 B
JSON
{
|
|
"name": "code-oss-dev-smoke-test",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./src/main.js",
|
|
"scripts": {
|
|
"compile": "cd ../automation && npm run compile && cd ../smoke && node ../../node_modules/typescript/bin/tsc",
|
|
"watch-automation": "cd ../automation && npm run watch",
|
|
"watch-smoke": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
|
|
"watch": "npm-run-all2 -lp watch-automation watch-smoke",
|
|
"mocha": "node ../node_modules/mocha/bin/mocha"
|
|
},
|
|
"dependencies": {
|
|
"ncp": "^2.0.0",
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ncp": "2.0.1",
|
|
"@types/node": "22.x",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"npm-run-all2": "^8.0.4"
|
|
}
|
|
}
|