@teipublisher/pb-components 2.5.1 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/Dockerfile +2 -4
- package/dist/pb-components-bundle.js +11 -11
- package/package.json +1 -1
- package/src/authority/{gf.js → anton.js} +7 -5
- package/src/authority/connectors.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.6.0](https://github.com/eeditiones/tei-publisher-components/compare/v2.5.1...v2.6.0) (2023-07-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **authority:** renamed gf.js to anton.js and made endpoint and provider name configurable ([5dc6943](https://github.com/eeditiones/tei-publisher-components/commit/5dc69436644954d813801faf09e1c50f565b5d6e))
|
|
7
|
+
|
|
1
8
|
## [2.5.1](https://github.com/eeditiones/tei-publisher-components/compare/v2.5.0...v2.5.1) (2023-06-14)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -25,9 +25,7 @@ RUN curl -L -o apache-ant-${ANT_VERSION}-bin.tar.gz http://www.apache.org/dist/a
|
|
|
25
25
|
|
|
26
26
|
ENV PATH ${PATH}:${ANT_HOME}/bin
|
|
27
27
|
|
|
28
|
-
RUN
|
|
29
|
-
&& apt-get install -y nodejs \
|
|
30
|
-
&& curl -L https://www.npmjs.com/install.sh | sh
|
|
28
|
+
RUN apt-get update && apt-get install -y nodejs npm
|
|
31
29
|
|
|
32
30
|
FROM builder as tei
|
|
33
31
|
|
|
@@ -89,4 +87,4 @@ ENV JAVA_TOOL_OPTIONS \
|
|
|
89
87
|
# pre-populate the database by launching it once
|
|
90
88
|
RUN [ "java", \
|
|
91
89
|
"org.exist.start.Main", "client", "-l", \
|
|
92
|
-
"--no-gui", "--xpath", "system:get-version()" ]
|
|
90
|
+
"--no-gui", "--xpath", "system:get-version()" ]
|