Skip to content

Commit

Permalink
Update deps, v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Mar 27, 2022
1 parent 2cb31be commit b5ae0de
Show file tree
Hide file tree
Showing 5 changed files with 2,611 additions and 890 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
@@ -1,7 +1,9 @@
name: Tests

on: [push, pull_request]

env:
CI: true
FORCE_COLOR: 2

jobs:
run:
Expand All @@ -11,21 +13,18 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14]
node: [12, 14, 16]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Set Node.js version
uses: actions/setup-node@v1
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- run: node --version
- run: npm --version

- name: Install npm dependencies
run: npm ci

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
v5.1.0:
date: 2022-03-27
changes:
- Update dependencies. uglify-js ^3.15.2.
v5.0.0:
date: 2020-07-16
changes:
Expand Down
7 changes: 4 additions & 3 deletions README.md
@@ -1,4 +1,4 @@
# 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)
# 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)

> Minify JavaScript files with UglifyJS
Expand Down Expand Up @@ -442,7 +442,7 @@ grunt.initConfig({
});
```

#### Compiling all files separately in each of their path
#### Compiling all files separately on the each their path

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

Expand Down Expand Up @@ -525,6 +525,7 @@ grunt.initConfig({

## Release History

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

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

*This file was generated on Thu Jul 16 2020 10:08:35.*
*This file was generated on Sun Mar 27 2022 11:38:42.*

0 comments on commit b5ae0de

Please sign in to comment.