Skip to content

Commit

Permalink
chore: Rename lint and test scripts (#94)
Browse files Browse the repository at this point in the history
Rename test and lint scripts to test:ci and lint:ci
  • Loading branch information
cheyer authored Oct 17, 2023
1 parent a1023ca commit 0de4dae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"debug": "nodemon --watch 'src/**/*' -e ts --exec 'npm run lint && npm run prettier && npm run debugger'",
"debug-brk": "nodemon --watch 'src/**/*' -e ts --exec 'npm run lint && npm run prettier && npm run debugger-brk'",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"lint-without-fix": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"test": "jest --passWithNoTests",
"lint:ci": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"test:ci": "jest --passWithNoTests",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"debugger": "NODE_ENV=development node --require ts-node/register --inspect=0.0.0.0:9229 src/server.ts",
"debugger-brk": "NODE_ENV=development node --require ts-node/register --inspect-brk=0.0.0.0:9229 src/server.ts",
Expand Down Expand Up @@ -60,4 +60,4 @@
"prettier": {
"printWidth": 100
}
}
}

0 comments on commit 0de4dae

Please sign in to comment.