Skip to content

Commit 142e850

Browse files
committedSep 6, 2018
Update all deps and require Node.js >= 6.
1 parent 07bf23c commit 142e850

7 files changed

+4907
-21
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ sudo: false
33
language: node_js
44

55
node_js:
6-
- "4"
76
- "6"
8-
- "7"
7+
- "8"
8+
- "10"
99

1010
matrix:
1111
fast_finish: true

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project.
1+
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.

‎Gruntfile.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ module.exports = function (grunt) {
8686

8787
grunt.registerTask('default', [
8888
'test',
89-
'contrib-core',
90-
'contrib-ci:skipIfExists'
89+
'build-contrib'
9190
]);
9291
};

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Getting Started
88

9-
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
9+
If you haven't used [Grunt](https://gruntjs.com/) before, be sure to check out the [Getting Started](https://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](https://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
1010

1111
```shell
1212
npm install grunt-contrib-cssmin --save-dev
@@ -121,4 +121,4 @@ cssmin: {
121121

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

124-
*This file was generated on Thu Jul 27 2017 11:31:20.*
124+
*This file was generated on Fri Sep 07 2018 02:49:39.*

‎appveyor.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ version: "{build}"
55
# What combinations to test
66
environment:
77
matrix:
8-
- nodejs_version: "4"
9-
platform: x64
10-
- nodejs_version: "4"
11-
platform: x86
128
- nodejs_version: "6"
139
platform: x86
14-
- nodejs_version: "7"
10+
- nodejs_version: "8"
11+
platform: x86
12+
- nodejs_version: "10"
1513
platform: x86
1614

1715
install:

‎package-lock.json

+4,889
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
@@ -4,28 +4,28 @@
44
"version": "2.2.1",
55
"author": {
66
"name": "Grunt Team",
7-
"url": "http://gruntjs.com/"
7+
"url": "https://gruntjs.com/"
88
},
99
"repository": "gruntjs/grunt-contrib-cssmin",
1010
"license": "MIT",
1111
"engines": {
12-
"node": ">=4.0"
12+
"node": ">=6.0"
1313
},
1414
"main": "tasks/cssmin.js",
1515
"scripts": {
1616
"test": "grunt test"
1717
},
1818
"dependencies": {
19-
"chalk": "^1.0.0",
20-
"clean-css": "~4.1.1",
19+
"chalk": "^2.4.1",
20+
"clean-css": "~4.2.1",
2121
"maxmin": "^2.1.0"
2222
},
2323
"devDependencies": {
24-
"grunt": "^1.0.0",
25-
"grunt-contrib-clean": "^1.0.0",
26-
"grunt-contrib-internal": "^1.1.0",
27-
"grunt-contrib-jshint": "^1.0.0",
28-
"grunt-contrib-nodeunit": "^1.0.0"
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"
2929
},
3030
"keywords": [
3131
"gruntplugin",

0 commit comments

Comments
 (0)
Please sign in to comment.