You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2020/08/05 02:35:43 UTC

[incubator-annotator] branch master updated: Remove superfluous .js extension support in nyc

This is an automated email from the ASF dual-hosted git repository.

randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git


The following commit(s) were added to refs/heads/master by this push:
     new 21cb6da  Remove superfluous .js extension support in nyc
21cb6da is described below

commit 21cb6dad2c64a93dd86bac1310f839e7764427e8
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Tue Aug 4 19:35:13 2020 -0700

    Remove superfluous .js extension support in nyc
---
 nyc.config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nyc.config.js b/nyc.config.js
index 08d36cf..f1195d5 100644
--- a/nyc.config.js
+++ b/nyc.config.js
@@ -20,7 +20,7 @@
 
 module.exports = {
   all: true,
-  include: ['packages/*/src/**/*.[jt]s'],
+  include: ['packages/*/src/**/*.ts'],
   instrument: false,
   sourceMap: false,
   require: ['./babel-register.js'],