Socket
Socket
Sign inDemoInstall

@parcel/utils

Package Overview
Dependencies
Maintainers
1
Versions
877
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/utils - npm Package Compare versions

Comparing version 2.0.0-nightly.159 to 2.0.0-nightly.165

6

lib/config.js

@@ -24,3 +24,3 @@ "use strict";

if (filepath === root || _path.default.basename(filepath) === 'node_modules') {
if (_path.default.basename(filepath) === 'node_modules') {
return null;

@@ -37,2 +37,6 @@ }

if (filepath === root) {
return null;
}
return resolveConfig(fs, filepath, filenames, opts);

@@ -39,0 +43,0 @@ }

12

package.json
{
"name": "@parcel/utils",
"version": "2.0.0-nightly.159+59d4d6eb",
"version": "2.0.0-nightly.165+161837f7",
"description": "Blazing fast, zero configuration web application bundler",

@@ -20,6 +20,6 @@ "license": "MIT",

"@iarna/toml": "^2.2.0",
"@parcel/codeframe": "2.0.0-nightly.159+59d4d6eb",
"@parcel/diagnostic": "2.0.0-nightly.159+59d4d6eb",
"@parcel/logger": "2.0.0-nightly.159+59d4d6eb",
"@parcel/markdown-ansi": "2.0.0-nightly.159+59d4d6eb",
"@parcel/codeframe": "2.0.0-nightly.165+161837f7",
"@parcel/diagnostic": "2.0.0-nightly.165+161837f7",
"@parcel/logger": "2.0.0-nightly.165+161837f7",
"@parcel/markdown-ansi": "2.0.0-nightly.165+161837f7",
"ansi-html": "^0.0.7",

@@ -44,3 +44,3 @@ "chalk": "^2.4.2",

},
"gitHead": "59d4d6ebb6765c5833c31391b6cca4015c88319d"
"gitHead": "161837f71682f13d2b16e7396e82eb620fe06e4e"
}

@@ -34,3 +34,3 @@ // @flow

// Don't traverse above the module root
if (filepath === root || path.basename(filepath) === 'node_modules') {
if (path.basename(filepath) === 'node_modules') {
return null;

@@ -46,2 +46,6 @@ }

if (filepath === root) {
return null;
}
return resolveConfig(fs, filepath, filenames, opts);

@@ -48,0 +52,0 @@ }

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