Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nuxt/config

Package Overview
Dependencies
Maintainers
5
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.16.1 to 2.16.2

11

dist/config.js
/*!
* @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");

9

package.json
{
"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"

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