Skip to content

Commit

Permalink
Update deps (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Oct 21, 2019
1 parent 1cfa1f1 commit ea2bb69
Show file tree
Hide file tree
Showing 7 changed files with 170 additions and 373 deletions.
20 changes: 3 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
sudo: false

language: node_js

node_js:
- "4"
- "6"
- "7"

env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- "8"
- "10"

matrix:
fast_finish: true

cache:
directories:
- node_modules
cache: npm
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project.
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ module.exports = function(grunt) {
// plugin's task(s), then test the result.
grunt.registerTask('test', ['jshint', 'clean', 'copy', 'compress', 'nodeunit']);

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

};
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 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)
# 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)

> Compress files and folders


## Getting Started

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:
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:

```shell
npm install grunt-contrib-compress --save-dev
Expand Down Expand Up @@ -281,6 +281,7 @@ compress: {

## Release History

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

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

*This file was generated on Sat May 20 2017 14:05:16.*
*This file was generated on Mon Oct 21 2019 10:19:48.*
31 changes: 13 additions & 18 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,32 @@
clone_depth: 10
clone_depth: 5

version: "{build}"

# What combinations to test
environment:
matrix:
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "6"
platform: x86
- nodejs_version: "7"
platform: x86
- NODEJS_VERSION: "8"
PLATFORM: x86
- NODEJS_VERSION: "8"
PLATFORM: x64
- NODEJS_VERSION: "10"
PLATFORM: x64

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- IF "%platform%" == "x64" CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" amd64
- IF "%platform%" == "x86" CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" x86
- npm install
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
- npm ci

test_script:
# Output useful info for debugging
- node --version && npm --version
- node --version
- npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test
- npm test

build: off

matrix:
fast_finish: true

cache:
- node_modules -> package.json
- '%APPDATA%\npm-cache\ -> appveyor.yml,package.json,package-lock.json'
Loading

0 comments on commit ea2bb69

Please sign in to comment.