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

grunt-minifyify

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-minifyify - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0

2

package.json
{
"name": "grunt-minifyify",
"version": "3.1.0",
"version": "3.2.0",
"description": "Grunt plugin to produce minified source and source maps with browserify and minifyify.",

@@ -5,0 +5,0 @@ "main": "tasks/minifyify.js",

@@ -34,3 +34,4 @@ var fs = require('fs');

'add',
'transform'
'transform',
'globalTransform'
].forEach(function (type) {

@@ -68,2 +69,13 @@ file[type] = [].concat(data[type] || []).concat(options[type] || []);

});
if (Array.isArray(file.globalTransform) {
file[type].forEach(function(object) {
bundler.transform(object, {
global: true
});
});
} else if (file.globalTransform) {
bundler.transform(file.globalTransform, {
global: true
})
}
if (file.src) {

@@ -70,0 +82,0 @@ grunt.fail.warn(new Error('file.src is deprecated.' +

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