We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d1138 commit a7be5aeCopy full SHA for a7be5ae
.travis.yml
@@ -12,5 +12,5 @@ node_js:
12
- "v8.11.3"
13
- "v10.7.0"
14
scripts: {
15
- "test": "make test"
+ "test": "npm run test:build"
16
}
package.json
@@ -7,9 +7,10 @@
7
"build": "jison -m js ./src/sqlParser.jison -o ./dist/parser/sqlParser.js && npm run build-concat",
8
"build-concat": "cat src/stringify.js src/suffix.js >> ./dist/parser/sqlParser.js",
9
"postbuild": "npm run test:build",
10
+ "test": "npm run build",
11
"test:all": "mocha --require babel-register",
- "test:build": "mocha 'test/*.test.js'",
- "test:benchmark": "mocha test/benchmark.js"
+ "test:build": "mocha --require babel-register 'test/*.test.js'",
+ "test:benchmark": "mocha --require babel-register test/benchmark.js"
},
"repository": {
"type": "git",
0 commit comments