Files
vscode/test/smoke/package.json
Ladislau Szomoru dd65f0c5ef Engineering - switch from npm-run-all to npm-run-all2 (#284087)
* 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
2026-01-05 15:49:42 +01:00

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"
}
}