Skip to content

Commit

Permalink
make it work also none-unix-shell aka windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaender committed Apr 21, 2024
1 parent e8c747c commit 949fdfc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Expand Up @@ -17,4 +17,5 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install --include=dev
- run: npm run build
- run: npm run test
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -7,7 +7,8 @@
"csv2md": "bin/csv2md"
},
"scripts": {
"test": "npm run build; npx mocha test/**/*.ts",
"test": "npx mocha test/**/*.ts",
"build-and-test": "npm run build && npx mocha test/**/*.ts",
"build": "tsc --project tsconfig.json",
"watch": "tsc --project tsconfig.json -w"
},
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Expand Up @@ -3,7 +3,6 @@
"module": "commonjs",
"strict": true,
"outDir": "dist",
// "allowSyntheticDefaultImports": true,
"sourceMap": true,
"skipLibCheck": true
},
Expand Down

0 comments on commit 949fdfc

Please sign in to comment.