Skip to content

Commit 352c1ae

Browse files
committed
build(scripts): fix test:typescript script to run tsd in all examples/* repositories
1 parent 41b735a commit 352c1ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"test": "npm run -s test:code && npm run -s test:typescript && npm run -s test:coverage && npm run -s lint",
1717
"test:code": "c8 uvu . '^(examples/.*/)?test.js$'",
1818
"test:coverage": "c8 check-coverage",
19-
"test:typescript": "tsd && tsd examples/*"
19+
"test:typescript": "tsd && for d in examples/* ; do tsd $d; done"
2020
},
2121
"repository": "github:gr2m/javascript-plugin-architecture-with-typescript-definitions",
2222
"keywords": [

0 commit comments

Comments
 (0)