Skip to content

Commit 2683b1d

Browse files
XhmikosRvladikoff
authored andcommitted
Add Node.js 10. (#37)
1 parent 252dc84 commit 2683b1d

File tree

12 files changed

+348
-246
lines changed

12 files changed

+348
-246
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ language: node_js
55
node_js:
66
- "6"
77
- "8"
8+
- "10"
89

910
matrix:
1011
fast_finish: true

CHANGELOG

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
v3.1.0:
2+
date: 2018-07-28
3+
changes:
4+
- Add Node.js 10.
15
v2.0.0:
26
date: 2017-11-26
37
changes:
4-
- Update major version since the node.js 0.10 removal is a breaking change.
8+
- Update major version since the Node.js 0.10 removal is a breaking change.
59
v1.4.2:
610
date: 2017-11-23
711
changes:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* grunt-contrib-internal
3-
* http://gruntjs.com/
3+
* https://gruntjs.com/
44
*
55
* Copyright (c) 2016 Tyler Kellen, contributors
66
* Licensed under the MIT license.

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# grunt-contrib-internal v1.4.2 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-internal.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-internal) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/vhmcvnnnmou73wq8/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-internal/branch/master)
1+
# grunt-contrib-internal v3.1.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-internal.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-internal) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/vhmcvnnnmou73wq8/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-internal/branch/master)
22

33
> Internal tasks for managing the grunt-contrib projects
44
55

6-
_Note that this is not an official Grunt plugin release! If you want to use this in a project, please be sure to follow the instructions for installing development versions, as outlined in the [Installing Grunt](http://gruntjs.com/installing-grunt) guide._
6+
_Note that this is not an official Grunt plugin release! If you want to use this in a project, please be sure to follow the instructions for installing development versions, as outlined in the [Installing Grunt](https://gruntjs.com/installing-grunt) guide._
77

88

99
## Getting Started
1010

11-
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:
11+
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:
1212

1313
```shell
1414
npm install grunt-contrib-internal --save-dev
@@ -35,6 +35,8 @@ grunt.registerTask('default', ['jshint', 'contrib-core', 'contrib-ci:skipIfExist
3535

3636
## Release History
3737

38+
* 2018-07-28   v3.1.0   Add Node.js 10.
39+
* 2017-11-26   v2.0.0   Update major version since the Node.js 0.10 removal is a breaking change.
3840
* 2017-11-23   v1.4.2   Update CI configs; add Node.js 9.
3941
* 2017-10-31   v1.4.1   Update CI configs; remove Node.js 0.10.
4042
* 2017-06-10   v1.3.0   Update CI configs; add Node.js 8, remove 7.
@@ -62,4 +64,4 @@ grunt.registerTask('default', ['jshint', 'contrib-core', 'contrib-ci:skipIfExist
6264

6365
Task submitted by ["Cowboy" Ben Alman](http://benalman.com/)
6466

65-
*This file was generated on Thu Nov 23 2017 10:33:26.*
67+
*This file was generated on Sat Jul 28 2018 21:52:20.*

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ environment:
99
platform: x86
1010
- nodejs_version: "8"
1111
platform: x86
12+
- nodejs_version: "10"
13+
platform: x86
1214

1315
install:
1416
- ps: Install-Product node $env:nodejs_version $env:platform

0 commit comments

Comments
 (0)