Skip to content

Commit e07834d

Browse files
authored
Merge pull request #3 from architect/nodejs16
2 parents 36f8011 + 0ebf129 commit e07834d

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

cjs/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
let runtimes = {
55
node: [
66
'nodejs14.x',
7+
'nodejs16.x',
78
'nodejs12.x',
89
],
910
python: [
@@ -33,6 +34,13 @@ let runtimes = {
3334
}
3435

3536
let runtimeVersions = {
37+
'nodejs16.x': {
38+
runtime: 'node',
39+
major: '16',
40+
minor: null,
41+
patch: null,
42+
wildcard: '16.*.*'
43+
},
3644
'nodejs14.x': {
3745
runtime: 'node',
3846
major: '14',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"scripts": {
1818
"lint": "eslint . --fix",
1919
"test": "npm run lint && npm run test:unit",
20-
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
20+
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
2121
"rc": "npm version prerelease --preid RC"
2222
},
2323
"engines": {
@@ -26,9 +26,9 @@
2626
"devDependencies": {
2727
"@architect/eslint-config": "^2.0.1",
2828
"cross-env": "~7.0.3",
29-
"eslint": "^8.2.0",
30-
"tap-spec": "~5.0.0",
31-
"tape": "~5.3.2"
29+
"eslint": "^8.15.0",
30+
"tap-arc": "~0.3.4",
31+
"tape": "~5.5.3"
3232
},
3333
"eslintConfig": {
3434
"extends": "@architect/eslint-config"

0 commit comments

Comments
 (0)