You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ge...@apache.org on 2020/08/17 12:13:22 UTC

[incubator-annotator] branch demo-empty-quote updated (8800720 -> 500af96)

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

gerben pushed a change to branch demo-empty-quote
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git.


 discard 8800720  Support empty ranges in highlighter & demo
     add 8e24974  Get Babel module resolver working with TypeScript preset
     add 28821d6  Set up TypeScript linting with ESLint
     add 3aeb518  Do not lint the demo build output
     add e59fb15  Lint the webpack config
     add 230c0d2  Use names for inter-package references
     add 58a0421  Use a single tsconfig.json
     add 1320153  Remove JSON module resolution in TypeScript
     add d9dcd28  Fix remaining test typecheck failures
     add f348d4d  Fix lexical scope in switch case
     add 35cc009  Apply automatic lint fixes
     add cff896a  Remove excess space in package.json
     add 9642123  nitpicking
     add 6b38b35  Fix document->doc
     add 519b231  Move test utils.ts one folder up
     add d453e3a  Support highlighting empty ranges
     add aa5bd9e  Create tests for highlighter
     add d4d933c  Merge branch 'tweak-highlighter'
     add 500af96  Support empty ranges in highlighter & demo

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8800720)
            \
             N -- N -- N   refs/heads/demo-empty-quote (500af96)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .eslintignore                                      |   1 +
 .eslintrc.js                                       | 122 +++++++------
 @types/cartesian/index.d.ts                        |   4 +-
 @types/dom-seek/index.d.ts                         |   5 +-
 babel.config.js                                    |   5 +-
 package.json                                       |   9 +-
 packages/dom/package.json                          |   3 +
 packages/dom/src/css.ts                            |   6 +-
 packages/dom/src/highlight-range.ts                |  34 ++--
 packages/dom/src/range/cartesian.ts                |  21 ++-
 packages/dom/src/range/match.ts                    |  10 +-
 packages/dom/src/scope.ts                          |   6 +-
 packages/dom/src/text-quote/describe.ts            |  67 ++++---
 packages/dom/src/text-quote/match.ts               |   8 +-
 packages/dom/src/types.ts                          |   6 +-
 .../test/highlight-range/highlight-range.test.ts   | 199 +++++++++++++++++++++
 packages/dom/test/range/cartesian.test.ts          |   3 +-
 packages/dom/test/text-quote/describe-cases.ts     |  15 +-
 packages/dom/test/text-quote/describe.test.ts      |  36 +++-
 packages/dom/test/text-quote/match-cases.ts        |  76 ++++----
 packages/dom/test/text-quote/match.test.ts         |  55 +++---
 packages/dom/test/{text-quote => }/utils.ts        |  39 ++--
 packages/selector/src/index.ts                     |  10 +-
 packages/selector/src/types.ts                     |  22 +--
 test/data-model.test.ts                            |  42 +++--
 tsconfig.json                                      |  40 +++--
 tsconfig.tests.json                                |  15 --
 27 files changed, 584 insertions(+), 275 deletions(-)
 create mode 100644 packages/dom/test/highlight-range/highlight-range.test.ts
 rename packages/dom/test/{text-quote => }/utils.ts (64%)
 delete mode 100644 tsconfig.tests.json