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:05:22 UTC

[incubator-annotator] 07/12: Remove unnecessary /index in imports

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 f9db3f2acefc264aacbc70b81944c212b7180a74
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Mon Aug 3 20:00:44 2020 -0700

    Remove unnecessary /index in imports
---
 packages/dom/src/index.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/dom/src/index.ts b/packages/dom/src/index.ts
index 6ef53d7..3d7ca58 100644
--- a/packages/dom/src/index.ts
+++ b/packages/dom/src/index.ts
@@ -19,6 +19,6 @@
  */
 
 export * from './css';
-export * from './range/index';
-export * from './text-quote/index';
+export * from './range';
+export * from './text-quote';
 export * from './highlight-range';