New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-be-ugly

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-be-ugly - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

9

package.json
{
"name": "grunt-be-ugly",
"description": "Parallel uglification",
"version": "1.1.0",
"version": "1.1.1",
"homepage": "https://github.com/behance/grunt-be-ugly",

@@ -41,6 +41,7 @@ "author": {

"dependencies": {
"async": "^0.9.0",
"q": "^1.0.1",
"uglify-js": "^2.4.15"
"async": "~0.9.0",
"mkdirp": "~0.5.0",
"q": "~1.0.1",
"uglify-js": "~2.4.15"
}
}

@@ -6,3 +6,4 @@ #!/usr/bin/env node

grunt = require('grunt'),
uglify = require('./uglify').init(grunt);
uglify = require('./uglify').init(grunt),
mkdirp = require('mkdirp');

@@ -19,2 +20,3 @@ process.on('message', function(data) {

outputPath = path.resolve(options.dir, f) + ext,
dirName = path.dirname(outputPath),
result;

@@ -41,2 +43,4 @@

mkdirp.sync(dirName);
fs.writeFileSync(outputPath, result.min);

@@ -43,0 +47,0 @@ console.log('Uglified ' + f);

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