Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.1
Choose a base ref
...
head repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.2
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Dec 15, 2017

  1. Add --trace-warnings flag (#488)

    stelcheck authored and blakeembrey committed Dec 15, 2017
    Copy the full SHA
    3eefb00 View commit details
  2. Move @types to dev dependencies (#484)

    gfx authored and blakeembrey committed Dec 15, 2017
    Copy the full SHA
    f04c5f7 View commit details
  3. 4.0.2

    blakeembrey committed Dec 15, 2017
    Copy the full SHA
    129153f View commit details
Showing with 11 additions and 10 deletions.
  1. +9 −9 package.json
  2. +2 −1 src/bin.ts
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-node",
"version": "4.0.1",
"version": "4.0.2",
"description": "TypeScript execution environment and REPL for node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -49,6 +49,14 @@
},
"homepage": "https://github.com/TypeStrong/ts-node",
"devDependencies": {
"@types/arrify": "^1.0.1",
"@types/diff": "^3.2.1",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.0",
"@types/node": "^8.0.27",
"@types/source-map-support": "^0.4.0",
"@types/v8flags": "types/npm-v8flags#de224ae1cd5fd7dbb4e7158a6cc7a29e5315930d",
"@types/yn": "types/npm-yn#ca75f6c82940fae6a06fb41d2d37a6aa9b4ea8e9",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/proxyquire": "^1.3.28",
@@ -67,14 +75,6 @@
"typescript": "^2.4.1"
},
"dependencies": {
"@types/arrify": "^1.0.1",
"@types/diff": "^3.2.1",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.0",
"@types/node": "^8.0.27",
"@types/source-map-support": "^0.4.0",
"@types/v8flags": "types/npm-v8flags#de224ae1cd5fd7dbb4e7158a6cc7a29e5315930d",
"@types/yn": "types/npm-yn#ca75f6c82940fae6a06fb41d2d37a6aa9b4ea8e9",
"arrify": "^1.0.0",
"chalk": "^2.3.0",
"diff": "^3.1.0",
3 changes: 2 additions & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
@@ -33,7 +33,8 @@ v8flags(function (err, v8flags) {
'--perf-basic-prof',
'--preserve-symlinks',
'--expose-gc',
'--expose-http2'
'--expose-http2',
'--trace-warnings'
])

for (let i = 0; i < argv.length; i++) {