The Language Service integration tests should reinstall the Angular distribution every time it is built. Adds a `yarn build-dist` convinience script so building the distribution doesn't have to happen on the repo root. This new script also refreshes the installed modules. Building is expesnive, so it is not bundled with testing scripts. PR Close #32515
21 lines
781 B
JSON
21 lines
781 B
JSON
{
|
|
"name": "language_service_plugin",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"description": "Angular Language Service plugin integration test",
|
|
"dependencies": {
|
|
"@angular/core": "file:../../dist/packages-dist/core",
|
|
"@angular/language-service": "file:../../dist/packages-dist/language-service",
|
|
"@types/node": "file:../../node_modules/@types/node",
|
|
"jasmine": "file:../../node_modules/jasmine",
|
|
"typescript": "file:../../node_modules/typescript"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"build-dist": "../../scripts/build-packages-dist.sh && yarn install --check-files",
|
|
"cleanup": "rm -rf ti-*.log tsserver.log",
|
|
"golden": "yarn build && node generate.js",
|
|
"test": "yarn cleanup && yarn build && jasmine test.js"
|
|
}
|
|
}
|