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 <[email protected]> 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';
