better-node-inspect
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -0,1 +1,10 @@ | ||
## [0.3.2](https://github.com/iloveitaly/better-node-inspect/compare/v0.3.1...v0.3.2) (2023-08-03) | ||
### Bug Fixes | ||
* legacy argument parsing is missing an import ([5528923](https://github.com/iloveitaly/better-node-inspect/commit/5528923124a44d435c9aff10c5412ff3975e2046)) | ||
## [0.3.1](https://github.com/iloveitaly/better-node-inspect/compare/v0.3.0...v0.3.1) (2023-07-31) | ||
@@ -2,0 +11,0 @@ |
@@ -13,2 +13,8 @@ const { | ||
const { | ||
exitCodes: { | ||
kGenericUserError, | ||
}, | ||
} = internalBinding('errors'); | ||
function parseBoolean(value) { | ||
@@ -79,2 +85,5 @@ return value === 'true' || value === '1' || value === 'yes'; | ||
// the legacy `node inspect` options assumed the first argument was the target | ||
// to avoid breaking existing scripts, we maintain this behavior | ||
function processLegacyArgs(args) { | ||
@@ -81,0 +90,0 @@ const target = ArrayPrototypeShift(args); |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "A modern node inspector optimized for command line usage (like ipython, pry, iex, etc.)", | ||
@@ -13,0 +13,0 @@ "homepage": "https://github.com/iloveitaly/better-node-inspect", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
80377
1987