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

@parcel/core

Package Overview
Dependencies
Maintainers
1
Versions
888
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/core - npm Package Compare versions

Comparing version 2.0.0-nightly.207 to 2.0.0-nightly.208

9

lib/AssetGraphBuilder.js

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

async validate() {
let trackedRequestsDesc = this.assetRequests.filter(request => this.requestTracker.isTracked(request.id)).map(({
let trackedRequestsDesc = this.assetRequests.filter(request => this.requestTracker.isTracked(request.id) && this.config.getValidatorNames(request.request.filePath).length > 0).map(({
request

@@ -278,4 +278,9 @@ }) => request); // Schedule validations on workers for all plugins that implement the one-asset-at-a-time "validate" method.

configRef: this.configRef
})); // Schedule validations on the main thread for all validation plugins that implement "validateAll".
})); // Skip sending validation requests if no validators were no validators configured
if (trackedRequestsDesc.length === 0) {
return;
} // Schedule validations on the main thread for all validation plugins that implement "validateAll".
promises.push(new _Validation.default({

@@ -282,0 +287,0 @@ requests: trackedRequestsDesc,

{
"name": "@parcel/core",
"version": "2.0.0-nightly.207+3944c6e2",
"version": "2.0.0-nightly.208+10e18b0a",
"license": "MIT",

@@ -19,13 +19,13 @@ "publishConfig": {

"dependencies": {
"@parcel/cache": "2.0.0-nightly.209+3944c6e2",
"@parcel/diagnostic": "2.0.0-nightly.209+3944c6e2",
"@parcel/events": "2.0.0-nightly.209+3944c6e2",
"@parcel/fs": "2.0.0-nightly.209+3944c6e2",
"@parcel/logger": "2.0.0-nightly.209+3944c6e2",
"@parcel/package-manager": "2.0.0-nightly.209+3944c6e2",
"@parcel/plugin": "2.0.0-nightly.209+3944c6e2",
"@parcel/cache": "2.0.0-nightly.210+10e18b0a",
"@parcel/diagnostic": "2.0.0-nightly.210+10e18b0a",
"@parcel/events": "2.0.0-nightly.210+10e18b0a",
"@parcel/fs": "2.0.0-nightly.210+10e18b0a",
"@parcel/logger": "2.0.0-nightly.210+10e18b0a",
"@parcel/package-manager": "2.0.0-nightly.210+10e18b0a",
"@parcel/plugin": "2.0.0-nightly.210+10e18b0a",
"@parcel/source-map": "^2.0.0-alpha.4.6",
"@parcel/types": "2.0.0-nightly.209+3944c6e2",
"@parcel/utils": "2.0.0-nightly.209+3944c6e2",
"@parcel/workers": "2.0.0-nightly.209+3944c6e2",
"@parcel/types": "2.0.0-nightly.210+10e18b0a",
"@parcel/utils": "2.0.0-nightly.210+10e18b0a",
"@parcel/workers": "2.0.0-nightly.210+10e18b0a",
"abortcontroller-polyfill": "^1.1.9",

@@ -46,3 +46,3 @@ "browserslist": "^4.6.6",

},
"gitHead": "3944c6e27dd21d826bbc73f3010f1421a8736e2f"
"gitHead": "10e18b0a440b1678ef0fdcd7d104a1394a5ed6f6"
}

@@ -257,3 +257,7 @@ // @flow strict-local

let trackedRequestsDesc = this.assetRequests
.filter(request => this.requestTracker.isTracked(request.id))
.filter(
request =>
this.requestTracker.isTracked(request.id) &&
this.config.getValidatorNames(request.request.filePath).length > 0,
)
.map(({request}) => request);

@@ -270,2 +274,7 @@

// Skip sending validation requests if no validators were no validators configured
if (trackedRequestsDesc.length === 0) {
return;
}
// Schedule validations on the main thread for all validation plugins that implement "validateAll".

@@ -272,0 +281,0 @@ promises.push(

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