Skip to content

Commit e410511

Browse files
authoredMar 27, 2022
Update deps, v5.1.0 (#564)
* Update deps, v5.1.0 * Fix typo * Fix typo
1 parent 2cb31be commit e410511

File tree

6 files changed

+2614
-892
lines changed

6 files changed

+2614
-892
lines changed
 

‎.github/workflows/test.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Tests
2+
23
on: [push, pull_request]
4+
35
env:
4-
CI: true
6+
FORCE_COLOR: 2
57

68
jobs:
79
run:
@@ -11,21 +13,18 @@ jobs:
1113
strategy:
1214
fail-fast: false
1315
matrix:
14-
node: [10, 12, 14]
16+
node: [12, 14, 16]
1517
os: [ubuntu-latest, windows-latest]
1618

1719
steps:
1820
- name: Clone repository
1921
uses: actions/checkout@v2
2022

21-
- name: Set Node.js version
22-
uses: actions/setup-node@v1
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v2
2325
with:
2426
node-version: ${{ matrix.node }}
2527

26-
- run: node --version
27-
- run: npm --version
28-
2928
- name: Install npm dependencies
3029
run: npm ci
3130

‎CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v5.1.0:
2+
date: 2022-03-27
3+
changes:
4+
- Update dependencies. uglify-js ^3.15.2.
5+
- Requires node 12+.
16
v5.0.0:
27
date: 2020-07-16
38
changes:

‎README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-uglify v5.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-uglify/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-uglify/actions?workflow=Tests)
1+
# grunt-contrib-uglify v5.1.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-uglify/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-uglify/actions?workflow=Tests)
22

33
> Minify JavaScript files with UglifyJS
44
@@ -442,7 +442,7 @@ grunt.initConfig({
442442
});
443443
```
444444

445-
#### Compiling all files separately in each of their path
445+
#### Compiling all files separately in the each their path
446446

447447
This configuration will compress and mangle all js files separately in each folder.
448448

@@ -525,6 +525,7 @@ grunt.initConfig({
525525

526526
## Release History
527527

528+
* 2022-03-27   v5.1.0   Update dependencies. uglify-js ^3.15.2. Requires node 12+.
528529
* 2020-07-16   v5.0.0   Requires node 10+. Update dependencies.
529530
* 2019-03-21   v4.0.1   Update uglify-js to v3.5.0. Update dependencies.
530531
* 2018-08-26   v4.0.0   Update dependencies. Requires Node.js >= 6.
@@ -577,4 +578,4 @@ grunt.initConfig({
577578

578579
Task submitted by ["Cowboy" Ben Alman](http://benalman.com)
579580

580-
*This file was generated on Thu Jul 16 2020 10:08:35.*
581+
*This file was generated on Sun Mar 27 2022 11:41:37.*

‎docs/uglify-examples.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ grunt.initConfig({
236236
});
237237
```
238238

239-
## Compiling all files separately on the each their path
239+
## Compiling all files separately in the each their path
240240

241241
This configuration will compress and mangle all js files separately in each folder.
242242

‎package-lock.json

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

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"repository": "gruntjs/grunt-contrib-uglify",
1010
"license": "MIT",
1111
"engines": {
12-
"node": ">=10"
12+
"node": ">=12"
1313
},
1414
"main": "tasks/uglify.js",
1515
"scripts": {
@@ -24,9 +24,9 @@
2424
"devDependencies": {
2525
"grunt": "^1.1.0",
2626
"grunt-contrib-clean": "^2.0.0",
27-
"grunt-contrib-internal": "^5.0.0",
28-
"grunt-contrib-jshint": "^2.1.0",
29-
"grunt-contrib-nodeunit": "^2.0.0"
27+
"grunt-contrib-internal": "^7.0.0",
28+
"grunt-contrib-jshint": "^3.2.0",
29+
"grunt-contrib-nodeunit": "^4.0.0"
3030
},
3131
"keywords": [
3232
"gruntplugin"

0 commit comments

Comments
 (0)
Please sign in to comment.