Skip to content

Commit 0850dcd

Browse files
authoredApr 15, 2022
update dependencies (#568)
- chalk@4.1.2 - grunt@1.5.2 - maxmin@3.0.0 - uglify-js@3.15.4
1 parent c27ad5f commit 0850dcd

9 files changed

+326
-1620
lines changed
 

‎package-lock.json

+311-1,604
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-uglify",
33
"description": "Minify JavaScript files with UglifyJS",
4-
"version": "5.0.1",
4+
"version": "5.2.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "https://gruntjs.com/"
@@ -16,13 +16,13 @@
1616
"test": "grunt test"
1717
},
1818
"dependencies": {
19-
"chalk": "^2.4.1",
20-
"maxmin": "^2.1.0",
21-
"uglify-js": "^3.15.2",
19+
"chalk": "^4.1.2",
20+
"maxmin": "^3.0.0",
21+
"uglify-js": "^3.15.4",
2222
"uri-path": "^1.0.0"
2323
},
2424
"devDependencies": {
25-
"grunt": "^1.1.0",
25+
"grunt": "^1.5.2",
2626
"grunt-contrib-clean": "^2.0.0",
2727
"grunt-contrib-internal": "^7.0.0",
2828
"grunt-contrib-jshint": "^3.2.0",

‎test/fixtures/expected/maxLineLen.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
!function(){var list,math,square;square=function(x){return x*x},list=[1,2,3,4,5],math={
2-
root:Math.sqrt,square:square,cube:function(x){return x*square(x)}},
3-
"undefined"!=typeof elvis&&null!=elvis&&alert("I knew it!"),function(accum$){for(var i$=0,
4-
length$=list.length;i$<length$;++i$)accum$.push(math.cube(list[i$]));return accum$}.call(this,[])
5-
}.call(this);
1+
!function(){var square=function(x){return x*x},list=[1,2,3,4,5],math={root:Math.sqrt,square:square,
2+
cube:function(x){return x*square(x)}};"undefined"!=typeof elvis&&null!=elvis&&alert("I knew it!"),
3+
function(accum$){for(var i$=0,length$=list.length;i$<length$;++i$)accum$.push(math.cube(list[i$]));
4+
return accum$}.call(this,[])}.call(this);

‎test/fixtures/expected/sourcemapin.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/expected/sourcemapin.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/expected/sourcemapin_customUrl.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/expected/sourcemapin_customUrl.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/expected/sourcemapin_sources.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/expected/sourcemapin_sources.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.