@nuxt/config
Advanced tools
Comparing version 2.16.1 to 2.16.2
/*! | ||
* @nuxt/config v2.16.1 (c) 2016-2023 | ||
* @nuxt/config v2.16.2 (c) 2016-2023 | ||
* Released under the MIT License | ||
@@ -805,2 +805,11 @@ * Repository: https://github.com/nuxt/nuxt.js | ||
} | ||
if (parseInt(process.versions.node.slice(0, 2)) > 16) { | ||
options.buildModules.push(function patchMD4() { | ||
const crypto = require("crypto"); | ||
const _createHash = crypto.createHash; | ||
crypto.createHash = function(algorithm, options2) { | ||
return _createHash(algorithm === "md4" ? "md5" : algorithm, options2); | ||
}; | ||
}); | ||
} | ||
if (!options._start && utils.getPKG("@nuxt/components")) { | ||
@@ -807,0 +816,0 @@ options._modules.push("@nuxt/components"); |
{ | ||
"name": "@nuxt/config", | ||
"version": "2.16.1", | ||
"version": "2.16.2", | ||
"repository": "nuxt/nuxt.js", | ||
@@ -13,3 +13,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"@nuxt/utils": "2.16.1", | ||
"@nuxt/utils": "2.16.2", | ||
"consola": "^2.15.3", | ||
@@ -22,4 +22,7 @@ "defu": "^6.1.2", | ||
"std-env": "^3.3.2", | ||
"ufo": "^1.0.1" | ||
"ufo": "^1.1.1" | ||
}, | ||
"engines": { | ||
"node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" | ||
}, | ||
"publishConfig": { | ||
@@ -26,0 +29,0 @@ "access": "public" |
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
30620
950
+ Added@nuxt/utils@2.16.2(transitive)
- Removed@nuxt/utils@2.16.1(transitive)
Updated@nuxt/utils@2.16.2
Updatedufo@^1.1.1