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/09/18 16:10:42 UTC

[incubator-annotator] branch meta-package updated (f693e97 -> 0d378eb)

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

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


 discard f693e97  Add apache-annotator meta-package
     new 0d378eb  Add apache-annotator meta-package

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   (f693e97)
            \
             N -- N -- N   refs/heads/meta-package (0d378eb)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 packages/apache-annotator/package.json | 14 ++++++++++++--
 packages/apache-annotator/src/index.ts |  4 ++--
 2 files changed, 14 insertions(+), 4 deletions(-)


[incubator-annotator] 01/01: Add apache-annotator meta-package

Posted by ge...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0d378ebea0404a881fd22986112ef7a5f4677f85
Author: Gerben <ge...@treora.com>
AuthorDate: Fri Sep 18 17:27:50 2020 +0200

    Add apache-annotator meta-package
---
 packages/apache-annotator/.npmignore            |  2 ++
 packages/apache-annotator/README.md             |  3 ++
 packages/apache-annotator/package.json          | 41 +++++++++++++++++++++++++
 packages/apache-annotator/src/dom/index.ts      |  1 +
 packages/apache-annotator/src/index.ts          |  7 +++++
 packages/apache-annotator/src/selector/index.ts |  1 +
 packages/apache-annotator/tsconfig.json         | 12 ++++++++
 7 files changed, 67 insertions(+)

diff --git a/packages/apache-annotator/.npmignore b/packages/apache-annotator/.npmignore
new file mode 100644
index 0000000..281df39
--- /dev/null
+++ b/packages/apache-annotator/.npmignore
@@ -0,0 +1,2 @@
+src
+test
diff --git a/packages/apache-annotator/README.md b/packages/apache-annotator/README.md
new file mode 100644
index 0000000..dd0f4da
--- /dev/null
+++ b/packages/apache-annotator/README.md
@@ -0,0 +1,3 @@
+This package is a part of the Apache Annotator (incubating) project.
+
+For docs and other useful info see the [website](https://annotator.apache.org/) or [GitHub repository](https://github.com/apache/incubator-annotator).
diff --git a/packages/apache-annotator/package.json b/packages/apache-annotator/package.json
new file mode 100644
index 0000000..15e971d
--- /dev/null
+++ b/packages/apache-annotator/package.json
@@ -0,0 +1,41 @@
+{
+  "name": "apache-annotator",
+  "version": "0.1.0",
+  "description": "Web Annotation selector for engine.",
+  "homepage": "https://annotator.apache.org",
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/apache/incubator-annotator.git"
+  },
+  "license": "Apache-2.0",
+  "author": "Apache Software Foundation",
+  "exports": {
+    ".": {
+      "import": "./lib/index.mjs",
+      "require": "./lib/index.js"
+    },
+    "./dom": {
+      "import": "./lib/dom/index.mjs",
+      "require": "./lib/dom/index.js"
+    },
+    "./selector": {
+      "import": "./lib/selector/index.mjs",
+      "require": "./lib/selector/index.js"
+    }
+  },
+  "main": "./lib/index.js",
+  "module": "./lib/index.mjs",
+  "types": "./lib/index.d.ts",
+  "dependencies": {
+    "@annotator/dom": "^0.1.0",
+    "@annotator/selector": "^0.1.0",
+    "@babel/runtime-corejs3": "^7.8.7",
+    "core-js": "^3.6.4"
+  },
+  "engines": {
+    "node": "^10 || ^11 || ^12 || >=13.7"
+  },
+  "publishConfig": {
+    "access": "public"
+  }
+}
diff --git a/packages/apache-annotator/src/dom/index.ts b/packages/apache-annotator/src/dom/index.ts
new file mode 100644
index 0000000..469f803
--- /dev/null
+++ b/packages/apache-annotator/src/dom/index.ts
@@ -0,0 +1 @@
+export * from '@annotator/dom';
diff --git a/packages/apache-annotator/src/index.ts b/packages/apache-annotator/src/index.ts
new file mode 100644
index 0000000..a6e3453
--- /dev/null
+++ b/packages/apache-annotator/src/index.ts
@@ -0,0 +1,7 @@
+import * as dom from '@annotator/dom';
+import * as selector from '@annotator/selector';
+
+export {
+    dom,
+    selector,
+};
diff --git a/packages/apache-annotator/src/selector/index.ts b/packages/apache-annotator/src/selector/index.ts
new file mode 100644
index 0000000..f9e35a4
--- /dev/null
+++ b/packages/apache-annotator/src/selector/index.ts
@@ -0,0 +1 @@
+export * from '@annotator/selector';
diff --git a/packages/apache-annotator/tsconfig.json b/packages/apache-annotator/tsconfig.json
new file mode 100644
index 0000000..fd0b067
--- /dev/null
+++ b/packages/apache-annotator/tsconfig.json
@@ -0,0 +1,12 @@
+{
+  "extends": "../../tsconfig.base.json",
+  "include": ["src"],
+  "compilerOptions": {
+    "outDir": "lib",
+    "rootDir": "src"
+  },
+  "references": [
+    { "path": "../dom" },
+    { "path": "../selector" },
+  ]
+}