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

minifyify

Package Overview
Dependencies
Maintainers
1
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minifyify - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

9

lib/index.js
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 @@

13

package.json

@@ -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": {

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