Socket
Socket
Sign inDemoInstall

@nuxt/config

Package Overview
Dependencies
Maintainers
0
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt/config - npm Package Compare versions

Comparing version 2.17.4 to 2.18.0

11

dist/config.js
/*!
* @nuxt/config v2.17.4 (c) 2016-2024
* @nuxt/config v2.18.0 (c) 2016-2024
* Released under the MIT License

@@ -804,2 +804,11 @@ * Repository: https://github.com/nuxt/nuxt.js

}
if (parseInt(process.versions.node.slice(0, 2)) > 16 && !options.buildModules.some((m) => m.name === "patchMD4")) {
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")) {

@@ -806,0 +815,0 @@ options._modules.push("@nuxt/components");

4

package.json
{
"name": "@nuxt/config",
"version": "2.17.4",
"version": "2.18.0",
"repository": {

@@ -17,3 +17,3 @@ "type": "git",

"dependencies": {
"@nuxt/utils": "2.17.4",
"@nuxt/utils": "2.18.0",
"consola": "^3.2.3",

@@ -20,0 +20,0 @@ "defu": "^6.1.4",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc