We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13f76e4 commit 045ed65Copy full SHA for 045ed65
.github/workflows/test.yml
@@ -29,5 +29,8 @@ jobs:
29
- name: Install npm dependencies
30
run: npm install
31
32
+ - name: Run tsup
33
+ run: npm run tsup
34
+
35
- name: Run tests
36
run: npm run test
package.json
@@ -17,7 +17,7 @@
17
"scripts": {
18
"clean": "rm -rf dist",
19
"eslint": "npx eslint --ext .ts .",
20
- "test": "ts-mocha -r esbuild-register 'test/**/*.test.ts'",
+ "test": "ts-mocha -r esbuild-register 'test/*.test.ts'",
21
"tsup": "npm run clean && npx tsup"
22
},
23
"exports": {
0 commit comments