Comparing version 7.3.0 to 7.3.1
# node-dev | ||
## v7.3.1 / 2022-03-24 | ||
- Add `--experimental-modules` for ESM module support on node <12.17 (@bjornstar) | ||
- Use `ipc.mjs` for `get-source-loader.mjs` (@bjornstar) | ||
- [`test`] Move extensions options tests into their own directory (@bjornstar) | ||
## v7.3.0 / 2022-03-22 | ||
@@ -4,0 +10,0 @@ |
@@ -104,2 +104,5 @@ const { fork } = require('child_process'); | ||
} else if (semver.satisfies(process.version, '>=12.11.1')) { | ||
if (semver.satisfies(process.version, '<12.17.0')) { | ||
args.push('--experimental-modules'); | ||
} | ||
const loaderPath = semver.satisfies(process.version, '>=16.12.0') | ||
@@ -106,0 +109,0 @@ ? 'load-loader.mjs' |
{ | ||
"name": "node-dev", | ||
"version": "7.3.0", | ||
"version": "7.3.1", | ||
"description": "Restarts your app when files are modified", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37937
24
489