Skip to content

Commit 08daa1f

Browse files
committed
Update node versions
1 parent ed84cf0 commit 08daa1f

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ sudo: true
1313
node_js:
1414
# Node.js
1515
- 'node'
16+
- '9'
1617
- '8'
1718
- '7'
1819
- '6'

appveyor.yml

+12
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ environment:
3333

3434
matrix:
3535
# Unit tests:
36+
- nodejs_version: '9'
37+
npm_version: '>2.7.0'
38+
BUILD_TASK: 'test'
3639
- nodejs_version: '8'
3740
npm_version: '>2.7.0'
3841
BUILD_TASK: 'test'
@@ -56,6 +59,9 @@ environment:
5659
BUILD_TASK: 'test'
5760

5861
# Examples:
62+
- nodejs_version: '9'
63+
npm_version: '>2.7.0'
64+
BUILD_TASK: 'examples'
5965
- nodejs_version: '8'
6066
npm_version: '>2.7.0'
6167
BUILD_TASK: 'examples'
@@ -79,6 +85,9 @@ environment:
7985
BUILD_TASK: 'examples'
8086

8187
# Test coverage:
88+
- nodejs_version: '9'
89+
npm_version: '>2.7.0'
90+
BUILD_TASK: 'test-coverage'
8291
- nodejs_version: '8'
8392
npm_version: '>2.7.0'
8493
BUILD_TASK: 'test-coverage'
@@ -102,6 +111,9 @@ environment:
102111
BUILD_TASK: 'test-coverage'
103112

104113
# Benchmarks:
114+
- nodejs_version: '9'
115+
npm_version: '>2.7.0'
116+
BUILD_TASK: 'benchmark'
105117
- nodejs_version: '8'
106118
npm_version: '>2.7.0'
107119
BUILD_TASK: 'benchmark'

tools/make/common.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif
99
# GENERAL VARIABLES #
1010

1111
# Define supported Node.js versions:
12-
NODE_VERSIONS ?= '0.10 0.12 1 2 3 4 5 6 7 8 node'
12+
NODE_VERSIONS ?= '0.10 0.12 1 2 3 4 5 6 7 8 9 node'
1313

1414
# Define a license SPDX identifier whitelist:
1515
LICENSES_WHITELIST ?= 'Apache-2.0,Artistic-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC0-1.0,ISC,MIT,MPL-2.0,Unlicense,WTFPL'

tools/make/lib/node/npm.mk

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ npm-version-pre-release: npm-pre-version
164164
# Run version tasks.
165165
#
166166
# This target runs tasks which should be completed when incrementing the project version and committing version changes to the local repository.
167+
#
168+
# TODO: move recipe guts to a script
169+
# TODO: on version, regenerate SVG equations and update README equation elements
167170

168171
npm-version: dist-browser-bundles update-dist-readme-browser-bundle-stats
169172
$(QUIET) $(MAKE) -f $(this_file) list-pkgs-installed-logical-tree-json > $(DIST_DIR)/npm_ls.json && \

tools/scripts/node_versions_run_script

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# VARIABLES #
2121

2222
# Define the Node.js versions:
23-
versions=(0.10 0.12 1 2 3 4 5 6 7 8 node)
23+
versions=(0.10 0.12 1 2 3 4 5 6 7 8 9 node)
2424

2525
# Set a flag indicating whether to perform a fresh install of node module dependencies for each Node.js version:
2626
install_deps=false

0 commit comments

Comments
 (0)