Skip to content

Commit

Permalink
fixup! wip: improve cjs generation
Browse files Browse the repository at this point in the history
  • Loading branch information
MylesBorins committed Aug 7, 2020
1 parent 15baab3 commit 6f0289a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:

- name: Test-Legacy
if: matrix.node-version == '10.x'
run: npm run test-legacy
run: npm run test:legacy

- name: Test
if: matrix.node-version != '10.x'
run: npm run test-ci
run: npm run test
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"lint": "eslint lib/* test/* examples/*",
"test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
"test:esm": "c8 tap --no-coverage --no-esm -j4 test/test-*.mjs",
"test:cjs": "tap --no-esm -j4 dist/test/test-*.js"
"test:cjs": "tap --no-esm -j4 dist/test/test-*.js",
"test:legacy": "npm run lint && npm run build && tap --no-esm -j1 dist/test/test-*.js"
},
"contributors": [
"Hans Hübner <hans.huebner@gmail.com>",
Expand Down

0 comments on commit 6f0289a

Please sign in to comment.