Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps, v5.1.0 #564

Merged
merged 3 commits into from Mar 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
5 changes: 5 additions & 0 deletions CHANGELOG
@@ -1,3 +1,8 @@
v5.1.0:
date: 2022-03-27
changes:
- Update dependencies. uglify-js ^3.15.2.
- Requires node 12+.
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 in 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. Requires node 12+.
* 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:41:37.*
2 changes: 1 addition & 1 deletion docs/uglify-examples.md
Expand Up @@ -236,7 +236,7 @@ grunt.initConfig({
});
```

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

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

Expand Down