Skip to content

Commit f03f24d

Browse files
committed
adding NodeJS v15 support
1 parent bb61c07 commit f03f24d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ matrix:
33
include:
44
- node_js: "8"
55
script: "npm test"
6-
- node_js: "12"
7-
script: "npm run travis"
86
- node_js: "14"
7+
script: "npm run travis"
8+
- node_js: "15"
99
script: "npm test"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "pg-minify",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"description": "Minifies PostgreSQL scripts.",
55
"main": "lib/index.js",
66
"typings": "typescript/pg-minify.d.ts",
77
"scripts": {
88
"test": "jasmine-node --captureExceptions test",
99
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test",
10-
"lint": "./node_modules/.bin/eslint ./lib ./test/*.js",
10+
"lint": "eslint ./lib ./test/*.js",
1111
"travis": "npm run lint && istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
1212
},
1313
"files": [
@@ -43,9 +43,9 @@
4343
},
4444
"devDependencies": {
4545
"coveralls": "3.1.0",
46-
"eslint": "7.1.0",
46+
"eslint": "7.16.0",
4747
"istanbul": "0.4.5",
4848
"jasmine-node": "3.0.0",
49-
"typescript": "3.9.3"
49+
"typescript": "4.1.3"
5050
}
5151
}

0 commit comments

Comments
 (0)