@lblod/ember-rdfa-editor-lblod-plugins 9.0.0 → 9.0.1
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 -1
- package/Dockerfile +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [9.0.1] - 2023-07-24
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Update docker build to serve static files
|
|
14
|
+
|
|
10
15
|
## [9.0.0] - 2023-07-24
|
|
11
16
|
|
|
12
17
|
### Added
|
|
@@ -582,7 +587,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
582
587
|
|
|
583
588
|
# Changelog
|
|
584
589
|
|
|
585
|
-
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v9.0.
|
|
590
|
+
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v9.0.1...HEAD
|
|
586
591
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...v8.0.1
|
|
587
592
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.1.0...v8.0.0
|
|
588
593
|
[7.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.0.0...v7.1.0
|
|
@@ -598,6 +603,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
598
603
|
[3.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.2...v3.0.0
|
|
599
604
|
[2.1.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.1...v2.1.2
|
|
600
605
|
[2.1.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.0...v2.1.1
|
|
606
|
+
[9.0.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v9.0.0...v9.0.1
|
|
601
607
|
[9.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.1...v9.0.0
|
|
602
608
|
[8.4.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.0...v8.4.1
|
|
603
609
|
[8.4.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.3.0...v8.4.0
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM madnificent/ember:4.
|
|
1
|
+
FROM madnificent/ember:4.12.1-node_18 as builder
|
|
2
2
|
|
|
3
3
|
LABEL maintainer="info@redpencil.io"
|
|
4
4
|
|
|
@@ -6,5 +6,7 @@ WORKDIR /app
|
|
|
6
6
|
COPY package.json package-lock.json ./
|
|
7
7
|
RUN npm ci
|
|
8
8
|
COPY . .
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
RUN ember build -prod
|
|
10
|
+
|
|
11
|
+
FROM semtech/static-file-service:0.2.0
|
|
12
|
+
COPY --from=builder /app/dist /data
|