Skip to content

Commit

Permalink
ci: Changed command to more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
unlight committed Apr 3, 2021
1 parent e232fbb commit 70198db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@
"nestjs-graphql"
],
"scripts": {
"test": "npm run lint:src && npm run tscheck && npm run test:cov",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"mocha": "node node_modules/mocha/bin/_mocha",
"test:r": "mocha -r ts-node/register/transpile-only src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:w": "mocha -r ts-node/register/transpile-only --watch-files src/**/*.ts --no-timeouts --watch src/**/*.spec.ts",
"test:d": "ndb -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"lint:src": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"lint:src:w": "watchexec -w src \"npm run lint:src\"",
"lint:src:fix": "npm run lint:src -- --fix",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"build": "sh Taskfile bundle",
"prisma:g": "node node_modules/prisma/build/index.js generate",
"format": "npx prettier src --write",
"regen": "rm -rf src/@generated && npm run prisma:g && npm run lint:src:fix && npm run format",
"regen": "rm -rf src/@generated && npm run prisma:g && npm run eslint:fix && npm run format",
"example": "ts-node-dev src/example/main.ts",
"clean_cache": "rm -rf node_modules/.cache",
"compatibilty_check": "sh Taskfile compatibilty_check",
Expand Down

0 comments on commit 70198db

Please sign in to comment.