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 2019/05/23 15:29:51 UTC

[incubator-annotator] 05/05: Remove .mjs extension from ESLint invocation

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

commit 3297bcaf41892bba7aa0a626e7b5a1865bd35d43
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Thu May 23 11:29:13 2019 -0400

    Remove .mjs extension from ESLint invocation
---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index 9b2468d..0d64e5b 100644
--- a/package.json
+++ b/package.json
@@ -21,7 +21,7 @@
     "build:esm": "cross-env BABEL_ENV=esm yarn build:babel -d esm src",
     "build:misc": "lerna exec -- cp ../../LICENSE ../../NOTICE .",
     "clean": "lerna exec -- rimraf LICENSE NOTICE esm lib",
-    "lint": "eslint . --ext js,mjs --fix --quiet",
+    "lint": "eslint --fix --quiet .",
     "prepare": "lerna run prepare",
     "prepublish": "yarn run build",
     "start": "webpack-dev-server --hot --mode development",