You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by dj...@apache.org on 2021/07/11 23:25:54 UTC

[felix-antora] branch main updated: use published dependencies

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

djencks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/felix-antora.git


The following commit(s) were added to refs/heads/main by this push:
     new 4311b6b  use published dependencies
4311b6b is described below

commit 4311b6bf13e14f1735b27ddf0c6998ee7fce3bc9
Author: David Jencks <dj...@apache.org>
AuthorDate: Sun Jul 11 16:25:42 2021 -0700

    use published dependencies
---
 antora-playbook.yml | 8 +++++++-
 package.json        | 6 ++++--
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/antora-playbook.yml b/antora-playbook.yml
index 63b3f08..44b160c 100644
--- a/antora-playbook.yml
+++ b/antora-playbook.yml
@@ -3,7 +3,12 @@ site:
   url: https://felix.apache.org
 content:
   sources:
-  - url: ./../felix-site
+  - url: https://github.com/apache/felix-antora-site.git
+    branches: main
+#  - url: ./../felix-dev
+#    branches: HEAD
+#    start_paths:
+#      - scr
 
 asciidoc:
   attributes:
@@ -11,6 +16,7 @@ asciidoc:
   extensions:
     - asciidoctor-kroki
     - "@djencks/asciidoctor-antora-indexer"
+    - "@djencks/asciidoctor-jsonpath"
 
 ui:
   bundle:
diff --git a/package.json b/package.json
index 0cff57d..a407183 100644
--- a/package.json
+++ b/package.json
@@ -3,13 +3,15 @@
   "scripts": {
     "clean-build": "npm run clean-install;npm run build",
     "clean-install": "rm -rf node_modules/ .cache/ package-lock.json;npm i --cache=.cache/npm",
+    "plain-install": "npm i --cache=.cache/npm",
     "build": "node_modules/.bin/antora antora-playbook.yml --stacktrace --fetch --clean"
   },
   "devDependencies": {
     "@antora/cli": "^2.3.3",
     "@antora/site-generator-default": "^2.3.3",
-    "@felix/felix-antora-ui": "./../felix-antora-ui",
+    "@felix/felix-antora-ui": "https://github.com/apache/felix-antora-ui.git",
     "asciidoctor-kroki": "^0.9.2",
-    "@djencks/asciidoctor-antora-indexer": "^0.0.4"
+    "@djencks/asciidoctor-antora-indexer": "^0.0.4",
+    "@djencks/asciidoctor-jsonpath": "^0.0.2"
   }
 }