Skip to content

Commit

Permalink
update dependencies (#568)
Browse files Browse the repository at this point in the history
- chalk@4.1.2
- grunt@1.5.2
- maxmin@3.0.0
- uglify-js@3.15.4
  • Loading branch information
alexlamsl committed Apr 15, 2022
1 parent c27ad5f commit 0850dcd
Show file tree
Hide file tree
Showing 9 changed files with 326 additions and 1,620 deletions.
1,915 changes: 311 additions & 1,604 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-uglify",
"description": "Minify JavaScript files with UglifyJS",
"version": "5.0.1",
"version": "5.2.0",
"author": {
"name": "Grunt Team",
"url": "https://gruntjs.com/"
Expand All @@ -16,13 +16,13 @@
"test": "grunt test"
},
"dependencies": {
"chalk": "^2.4.1",
"maxmin": "^2.1.0",
"uglify-js": "^3.15.2",
"chalk": "^4.1.2",
"maxmin": "^3.0.0",
"uglify-js": "^3.15.4",
"uri-path": "^1.0.0"
},
"devDependencies": {
"grunt": "^1.1.0",
"grunt": "^1.5.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-internal": "^7.0.0",
"grunt-contrib-jshint": "^3.2.0",
Expand Down
9 changes: 4 additions & 5 deletions test/fixtures/expected/maxLineLen.js
@@ -1,5 +1,4 @@
!function(){var list,math,square;square=function(x){return x*x},list=[1,2,3,4,5],math={
root:Math.sqrt,square:square,cube:function(x){return x*square(x)}},
"undefined"!=typeof elvis&&null!=elvis&&alert("I knew it!"),function(accum$){for(var i$=0,
length$=list.length;i$<length$;++i$)accum$.push(math.cube(list[i$]));return accum$}.call(this,[])
}.call(this);
!function(){var square=function(x){return x*x},list=[1,2,3,4,5],math={root:Math.sqrt,square:square,
cube:function(x){return x*square(x)}};"undefined"!=typeof elvis&&null!=elvis&&alert("I knew it!"),
function(accum$){for(var i$=0,length$=list.length;i$<length$;++i$)accum$.push(math.cube(list[i$]));
return accum$}.call(this,[])}.call(this);
2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin_customUrl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin_customUrl.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin_sources.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixtures/expected/sourcemapin_sources.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0850dcd

Please sign in to comment.