Skip to content

Commit

Permalink
updated deprecated command
Browse files Browse the repository at this point in the history
` (node:34) [DEP0062] DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead.`
  • Loading branch information
cilerler committed Nov 7, 2017
1 parent 4f1943f commit 3dcbfc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Docker-TypeScript/package.json
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"postinstall": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"debug": "nodemon --watch ./dist --debug=0.0.0.0:5858 --nolazy ./dist/index.js",
"debug": "nodemon --watch ./dist --inspect=0.0.0.0:5858 --nolazy ./dist/index.js",
"docker-debug": "docker-compose up",
"start": "node ./dist/index.js"
},
Expand All @@ -14,4 +14,4 @@
"nodemon": "^1.11.0"
},
"main": "./dist/index.js"
}
}

0 comments on commit 3dcbfc7

Please sign in to comment.