Skip to content

Commit

Permalink
Fix: Changed register ts-node path
Browse files Browse the repository at this point in the history
  • Loading branch information
roman.vasilev committed May 10, 2018
1 parent c42466f commit 16e461c
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 @@ -9,9 +9,9 @@
"t": "npm run mocha -- src/*.spec.ts",
"test": "npm run eslint && npm run tscheck && npm run t",
"test:r": "npm run mocha -- src/*.spec.ts",
"mocha": "node -r ts-node/register node_modules/mocha/bin/_mocha",
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha",
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --pretty false --strictNullChecks --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
Expand All @@ -20,7 +20,7 @@
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "chokidar \"src/**/*.ts\" --initial -c \"npm run eslint\"",
"lint:w": "concurrently -- \"npm run tsclint:w\" \"npm run eslint:w\"",
"semantic-release": "node -r ts-node/register node_modules/semantic-release/bin/semantic-release.js",
"semantic-release": "node -r ts-node/register/transpile-only node_modules/semantic-release/bin/semantic-release.js",
"prepublishOnly": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
Expand Down

0 comments on commit 16e461c

Please sign in to comment.