Comparing version 4.0.1 to 4.0.2
var plugin | ||
, fs = require('fs') | ||
, ReadableStream = require('stream').Readable; | ||
, ReadableStream = require('stream').Readable | ||
, mkdirp = require('mkdirp') | ||
, path = require('path'); | ||
@@ -94,2 +96,7 @@ plugin = function (bundle, minifyifyOpts) { | ||
var dir = path.dirname(minifyifyOpts.output); | ||
// create target directory if it doesn't exist | ||
if (dir) mkdirp.sync(dir); | ||
var writeStream = fs.createWriteStream(minifyifyOpts.output); | ||
@@ -96,0 +103,0 @@ |
@@ -21,3 +21,3 @@ { | ||
], | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"repository": { | ||
@@ -29,11 +29,12 @@ "type": "git", | ||
"dependencies": { | ||
"through": "2.3.x", | ||
"concat-stream": "1.4.x", | ||
"convert-source-map": "^0.3.3", | ||
"lodash.bind": "2.4.x", | ||
"lodash.defaults": "2.4.x", | ||
"lodash.foreach": "2.4.x", | ||
"lodash.bind": "2.4.x", | ||
"mkdirp": "^0.5.0", | ||
"source-map": "0.1.34", | ||
"uglify-js": "2.4.x", | ||
"convert-source-map": "^0.3.3", | ||
"tmp": "0.0.23" | ||
"through": "2.3.x", | ||
"tmp": "0.0.23", | ||
"uglify-js": "2.4.x" | ||
}, | ||
@@ -40,0 +41,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
667889
16008
10
+ Addedmkdirp@^0.5.0
+ Addedminimist@1.2.8(transitive)
+ Addedmkdirp@0.5.6(transitive)