deps: remove nyc (#11195)
* deps: remove nyc nyc is an unused dep for code coverage. This commit removes the dep as it is no longer used. We should remove deps that are not used as it bloats dependabot fixes in the monorepo as well as introducing attack vectors. Every dep is a liability and we should only have deps that we really need. * ci: cleanup Remove the calls to code coverage in ci * ci: add test
Showing
... | @@ -17,7 +17,6 @@ | ... | @@ -17,7 +17,6 @@ |
"install:ci": "pnpm install --ignore-scripts --frozen-lockfile && pnpm rebuild nx", | "install:ci": "pnpm install --ignore-scripts --frozen-lockfile && pnpm rebuild nx", | ||
"install:ci:offline": "pnpm install --ignore-scripts --offline --frozen-lockfile && pnpm rebuild nx", | "install:ci:offline": "pnpm install --ignore-scripts --offline --frozen-lockfile && pnpm rebuild nx", | ||
"lint": "npx nx run-many --target=lint", | "lint": "npx nx run-many --target=lint", | ||
"test:coverage": "npx nx run-many --target=test:coverage", | |||
"lint:ts:check": "npx nx run-many --target=lint:ts:check", | "lint:ts:check": "npx nx run-many --target=lint:ts:check", | ||
"lint:check": "npx nx run-many --target=lint:check", | "lint:check": "npx nx run-many --target=lint:check", | ||
"lint:fix": "npx nx run-many --target=lint:fix", | "lint:fix": "npx nx run-many --target=lint:fix", | ||
... | @@ -64,7 +63,6 @@ | ... | @@ -64,7 +63,6 @@ |
"mocha": "^10.6.0", | "mocha": "^10.6.0", | ||
"nx": "18.2.2", | "nx": "18.2.2", | ||
"nx-cloud": "latest", | "nx-cloud": "latest", | ||
"nyc": "^15.1.0", | |||
"prettier": "^2.8.0", | "prettier": "^2.8.0", | ||
"rimraf": "^5.0.5", | "rimraf": "^5.0.5", | ||
"ts-mocha": "^10.0.0", | "ts-mocha": "^10.0.0", | ||
... | ... |
Please register or sign in to comment