Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into ab/add-err-require-…
Browse files Browse the repository at this point in the history
…esm-error
  • Loading branch information
cspotcode committed May 17, 2020
2 parents 5e8090a + 4ce5846 commit da76779
Show file tree
Hide file tree
Showing 7 changed files with 1,108 additions and 228 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
flavor: [1, 2, 3, 4, 5, 6, 7, 8, 9]
include:
- flavor: 1
node: 6
node: 10
typescript: typescript@latest
- flavor: 2
node: 12.15
Expand Down
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
node_modules/
.nyc_output/
coverage/
.DS_Store
npm-debug.log
Expand Down
12 changes: 12 additions & 0 deletions nyc.config.js
@@ -0,0 +1,12 @@
module.exports = {
all: true,
include: [
'tests/node_modules/ts-node/**',
],
exclude: [
'**/*.d.ts',
'tests/node_modules/ts-node/node_modules/**',
],
excludeNodeModules: false,
excludeAfterRemap: false
};

0 comments on commit da76779

Please sign in to comment.