Skip to content

Commit ea2bb69

Browse files
authoredOct 21, 2019
Update deps (#218)
1 parent 1cfa1f1 commit ea2bb69

7 files changed

+170
-373
lines changed
 

‎.travis.yml

+3-17
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
1-
sudo: false
2-
31
language: node_js
42

53
node_js:
6-
- "4"
7-
- "6"
8-
- "7"
9-
10-
env:
11-
- CXX=g++-4.8
12-
addons:
13-
apt:
14-
sources:
15-
- ubuntu-toolchain-r-test
16-
packages:
17-
- g++-4.8
4+
- "8"
5+
- "10"
186

197
matrix:
208
fast_finish: true
219

22-
cache:
23-
directories:
24-
- node_modules
10+
cache: npm

‎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

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ module.exports = function(grunt) {
258258
// plugin's task(s), then test the result.
259259
grunt.registerTask('test', ['jshint', 'clean', 'copy', 'compress', 'nodeunit']);
260260

261-
// By default, lint and run all tests. Skip copying travis and appconveyor configurations from grunt-contrib-internal.
262-
grunt.registerTask('default', ['test', 'contrib-ci:skipIfExists', 'contrib-core']);
261+
// By default, lint and run all tests.
262+
grunt.registerTask('default', ['test', 'contrib-ci:skipIfExists', 'build-contrib']);
263263

264264
};

‎README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# grunt-contrib-compress v1.4.3 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-compress.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-compress) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/tiwbi1smm1j8aa5j/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-compress/branch/master)
1+
# grunt-contrib-compress v1.5.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-compress.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-compress) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/tiwbi1smm1j8aa5j/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-compress/branch/master)
22

33
> Compress files and folders
44
55

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-compress --save-dev
@@ -281,6 +281,7 @@ compress: {
281281

282282
## Release History
283283

284+
* 2018-04-24   v1.5.0   Update to node 4 as minimum version update tar to 4.4.8
284285
* 2017-05-20   v1.4.3   Update pretty-bytes to v4.0.2. Add option to not to create empty archive.
285286
* 2017-05-20   v1.4.2   Update archiver to v1.3.0.
286287
* 2017-01-20   v1.4.1   Make brotli support optional.
@@ -327,4 +328,4 @@ compress: {
327328

328329
Task submitted by [Chris Talkington](http://christalkington.com/)
329330

330-
*This file was generated on Sat May 20 2017 14:05:16.*
331+
*This file was generated on Mon Oct 21 2019 10:19:48.*

‎appveyor.yml

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,32 @@
1-
clone_depth: 10
1+
clone_depth: 5
22

33
version: "{build}"
44

5-
# What combinations to test
65
environment:
76
matrix:
8-
- nodejs_version: "4"
9-
platform: x64
10-
- nodejs_version: "4"
11-
platform: x86
12-
- nodejs_version: "6"
13-
platform: x86
14-
- nodejs_version: "7"
15-
platform: x86
7+
- NODEJS_VERSION: "8"
8+
PLATFORM: x86
9+
- NODEJS_VERSION: "8"
10+
PLATFORM: x64
11+
- NODEJS_VERSION: "10"
12+
PLATFORM: x64
1613

1714
install:
18-
- ps: Install-Product node $env:nodejs_version $env:platform
19-
- IF "%platform%" == "x64" CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" amd64
20-
- IF "%platform%" == "x86" CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" x86
21-
- npm install
15+
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
16+
- npm ci
2217

2318
test_script:
24-
# Output useful info for debugging
25-
- node --version && npm --version
19+
- node --version
20+
- npm --version
2621
# We test multiple Windows shells because of prior stdout buffering issues
2722
# filed against Grunt. https://github.com/joyent/node/issues/3584
2823
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
29-
- cmd: npm test
24+
- npm test
3025

3126
build: off
3227

3328
matrix:
3429
fast_finish: true
3530

3631
cache:
37-
- node_modules -> package.json
32+
- '%APPDATA%\npm-cache\ -> appveyor.yml,package.json,package-lock.json'

‎package-lock.json

+146-331
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"grunt": "^1.0.0",
3030
"grunt-contrib-clean": "^1.0.0",
3131
"grunt-contrib-copy": "^1.0.0",
32-
"grunt-contrib-internal": "^1.1.0",
32+
"grunt-contrib-internal": "^4.0.1",
3333
"grunt-contrib-jshint": "^1.0.0",
3434
"grunt-contrib-nodeunit": "^1.0.0",
3535
"tar": "^4.4.8",

0 commit comments

Comments
 (0)
Please sign in to comment.