@lblod/ember-rdfa-editor-lblod-plugins 38.0.0 → 38.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @lblod/ember-rdfa-editor-lblod-plugins
|
|
2
2
|
|
|
3
|
+
## 38.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#669](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/669) [`79ffc3a`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/79ffc3afb4895d6bfd7f6c67ffb259936c0b6c44) Thanks [@lagartoverde](https://github.com/lagartoverde)! - Fix non block variables were not being added to the measure
|
|
8
|
+
|
|
9
|
+
- [`b9357c3`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/b9357c31cc7a92a4a855f372a0910e86348d85c4) Thanks [@abeforgit](https://github.com/abeforgit)! - Fix docker build
|
|
10
|
+
|
|
3
11
|
## 38.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
package/Dockerfile
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
FROM node:
|
|
1
|
+
FROM node:22-slim AS builder
|
|
2
2
|
|
|
3
3
|
LABEL maintainer="info@redpencil.io"
|
|
4
4
|
|
|
5
5
|
RUN corepack enable
|
|
6
|
-
RUN corepack prepare pnpm@9.4 --activate
|
|
7
6
|
WORKDIR /app
|
|
8
|
-
COPY package.json pnpm-lock.yaml ./
|
|
7
|
+
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
|
|
9
8
|
RUN pnpm i --frozen-lockfile
|
|
10
9
|
COPY . .
|
|
11
10
|
RUN pnpm build
|