Skip to content

Commit 83b0c2f

Browse files
committedFeb 15, 2021
Update all dependencies except clean-css
1 parent e6dc6f8 commit 83b0c2f

File tree

6 files changed

+2748
-3670
lines changed

6 files changed

+2748
-3670
lines changed
 

‎.github/workflows/test.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
FORCE_COLOR: 2
7+
8+
jobs:
9+
run:
10+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
node: [10, 12, 14]
17+
os: [ubuntu-latest, windows-latest]
18+
19+
steps:
20+
- name: Clone repository
21+
uses: actions/checkout@v2
22+
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{ matrix.node }}
27+
28+
- name: Install npm dependencies
29+
run: npm ci
30+
31+
- name: Run tests
32+
run: npm test
33+
34+
# We test multiple Windows shells because of prior stdout buffering issues
35+
# filed against Grunt. https://github.com/joyent/node/issues/3584
36+
- name: Run PowerShell tests
37+
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
38+
shell: powershell
39+
if: startsWith(matrix.os, 'windows')

‎.travis.yml

-15
This file was deleted.

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-cssmin v3.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-cssmin.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-cssmin) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/ntgfqc3ppk533m84/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-cssmin/branch/master)
1+
# grunt-contrib-cssmin v3.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-cssmin/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-cssmin/actions?workflow=Tests)
22

33
> Minify CSS
44
@@ -122,4 +122,4 @@ cssmin: {
122122

123123
Task submitted by [Tim Branyen](http://tbranyen.com/)
124124

125-
*This file was generated on Fri Sep 07 2018 02:52:44.*
125+
*This file was generated on Mon Feb 15 2021 07:23:28.*

‎appveyor.yml

-33
This file was deleted.

‎package-lock.json

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

‎package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99
"repository": "gruntjs/grunt-contrib-cssmin",
1010
"license": "MIT",
1111
"engines": {
12-
"node": ">=6.0"
12+
"node": ">=10.0"
1313
},
1414
"main": "tasks/cssmin.js",
1515
"scripts": {
1616
"test": "grunt test"
1717
},
1818
"dependencies": {
19-
"chalk": "^2.4.1",
20-
"clean-css": "~4.2.1",
21-
"maxmin": "^2.1.0"
19+
"chalk": "^4.1.0",
20+
"clean-css": "~4.2.3",
21+
"maxmin": "^3.0.0"
2222
},
2323
"devDependencies": {
24-
"grunt": "^1.0.3",
25-
"grunt-contrib-clean": "^1.1.0",
26-
"grunt-contrib-internal": "^3.1.0",
27-
"grunt-contrib-jshint": "^1.1.0",
28-
"grunt-contrib-nodeunit": "^2.0.0"
24+
"grunt": "^1.3.0",
25+
"grunt-contrib-clean": "^2.0.0",
26+
"grunt-contrib-internal": "^6.0.1",
27+
"grunt-contrib-jshint": "^3.0.0",
28+
"grunt-contrib-nodeunit": "^2.1.0"
2929
},
3030
"keywords": [
3131
"gruntplugin",

0 commit comments

Comments
 (0)
Please sign in to comment.