New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@parcel/transformer-css

Package Overview
Dependencies
Maintainers
1
Versions
898
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/transformer-css - npm Package Compare versions

Comparing version 2.0.0-nightly.88 to 2.0.0-nightly.92

6

lib/CSSTransformer.js

@@ -66,2 +66,8 @@ "use strict";

}) {
// When this asset is an bundle entry, allow that bundle to be split to load shared assets separately.
// Only set here if it is null to allow previous transformers to override this behavior.
if (asset.isSplittable == null) {
asset.isSplittable = true;
}
let ast = asset.ast; // Check for `hasDependencies` being false here as well, as it's possible

@@ -68,0 +74,0 @@ // another transformer (such as PostCSSTransformer) has already parsed an

8

package.json
{
"name": "@parcel/transformer-css",
"version": "2.0.0-nightly.88+7f447bec",
"version": "2.0.0-nightly.92+c0655c56",
"license": "MIT",

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

"dependencies": {
"@parcel/plugin": "2.0.0-nightly.88+7f447bec",
"@parcel/utils": "2.0.0-nightly.88+7f447bec",
"@parcel/plugin": "2.0.0-nightly.92+c0655c56",
"@parcel/utils": "2.0.0-nightly.92+c0655c56",
"postcss": "^7.0.5",

@@ -26,3 +26,3 @@ "postcss-value-parser": "^3.3.1",

},
"gitHead": "7f447bec1eaf6d16b64114658b0be67ae042bea5"
"gitHead": "c0655c56f7973492fdb28671029ddd923f17a244"
}

@@ -50,2 +50,8 @@ // @flow

transform({asset}) {
// When this asset is an bundle entry, allow that bundle to be split to load shared assets separately.
// Only set here if it is null to allow previous transformers to override this behavior.
if (asset.isSplittable == null) {
asset.isSplittable = true;
}
let ast = asset.ast;

@@ -52,0 +58,0 @@ // Check for `hasDependencies` being false here as well, as it's possible

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