Skip to content

Commit 5161506

Browse files
committed
Fix glob pattern
1 parent 5480b03 commit 5161506

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
"dist/**/*"
99
],
1010
"scripts": {
11-
"prepublishOnly": "npm run clean && npm run lint && tsc && node --test 'test/*Spec.js'",
11+
"prepublishOnly": "npm run clean && npm run lint && tsc && node --test test/*Spec.js",
1212
"prepare": "tsc",
1313
"test": "npm run prepublishOnly",
1414
"clean": "rm -rf dist",
1515
"lint": "eslint \"./src/**/*.ts\"",
1616
"lint-fix": "eslint --fix \"./src/**/*.ts\"",
1717
"dev": "npm run clean && tsc --watch",
18-
"tdd": "node --test --watch 'test/*Spec.js'",
18+
"tdd": "node --test --watch test/*Spec.js",
1919
"buildOnly": "tsc",
20-
"test:integration": "npm run buildOnly && node --test 'test/integration/**Spec.js'"
20+
"test:integration": "npm run buildOnly && node --test test/integration/*Spec.js"
2121
},
2222
"repository": {
2323
"type": "git",

0 commit comments

Comments
 (0)