Socket
Socket
Sign inDemoInstall

shifter

Package Overview
Dependencies
97
Maintainers
4
Versions
89
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.0 to 0.4.1

tests/12-builder-css-with-assets.js

2

conf/docs/project.json
{
"projectName": "shifter - blazingly fast yui builder",
"version": "0.4.0",
"version": "0.4.1",
"yuiSeedUrl": "http://yui.yahooapis.com/3.6.0/build/yui/yui.js"
}

@@ -715,3 +715,15 @@ /*

if (mod.cssfiles && mod.cssfiles.length) {
exports.css(mod, name, stack.add(noop));
// if assets are allow for css modules, cssproc should be honored as well
if (options.cssproc) {
mod.cssproc = options.cssproc;
}
exports.css(mod, name, stack.add(function (err) {
if (err) {
log.warn('skipping assets copy due to previous build error');
} else {
if (options.assets && mod.assets) {
copyAssets(mod, name, stack.add(noop));
}
}
}));
}

@@ -718,0 +730,0 @@

@@ -5,3 +5,3 @@ {

"author": "Dav Glass <davglass@gmail.com>",
"version": "0.4.0",
"version": "0.4.1",
"dependencies": {

@@ -30,3 +30,3 @@ "progress": "~0.1.0",

"selleck": "*",
"vows": "*"
"vows": "*"
},

@@ -33,0 +33,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc