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

sheetify

Package Overview
Dependencies
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sheetify - npm Package Compare versions

Comparing version 4.0.5 to 4.0.6

3

package.json
{
"name": "sheetify",
"version": "4.0.5",
"version": "4.0.6",
"description": "Modular CSS bundler",

@@ -33,2 +33,3 @@ "repository": "sheetify/sheetify",

"resolve": "^1.1.7",
"style-resolve": "0.0.0",
"through2": "^2.0.0",

@@ -35,0 +36,0 @@ "xtend": "^4.0.1"

@@ -0,1 +1,2 @@

const cssResolve = require('style-resolve').sync
const mapLimit = require('map-limit')

@@ -12,3 +13,2 @@ const isStream = require('is-stream')

const cssResolve = require('./lib/css-resolve')
const sheetify = require('./index')

@@ -143,3 +143,9 @@

// - check if local file
const resolvePath = cssResolve(node.arguments[0].value, opts.basedir)
try {
var resolvePath = cssResolve(node.arguments[0].value, { basedir: opts.basedir })
} catch (err) {
if (err.message.substring(0, 18) !== 'Cannot find module') {
throw err
}
}
const fnp = resolvePath ||

@@ -146,0 +152,0 @@ path.join(path.dirname(filename), node.arguments[0].value)

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