@rse/nunjucks-cli 2.2.1 → 2.2.3

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
@@ -2,6 +2,17 @@
2
2
  ChangeLog
3
3
  =========
4
4
 
5
+ 2.2.3 (2025-12-28)
6
+ ------------------
7
+
8
+ - CLEANUP: always build before publish
9
+ - IMPROVEWENT: re-roll Docker container to get the "keys" filter from the addons
10
+
11
+ 2.2.2 (2025-12-28)
12
+ ------------------
13
+
14
+ - IMPROVEMENT: add @rse/nunjucks-addons to the Docker container image
15
+
5
16
  2.2.1 (2025-12-26)
6
17
  ------------------
7
18
 
package/Dockerfile CHANGED
@@ -5,7 +5,7 @@
5
5
  # build arguments (early)
6
6
  ARG IMAGE_PREFIX=ghcr.io/rse/
7
7
  ARG IMAGE_NAME=nunjucks-cli
8
- ARG IMAGE_VERSION=2.1.0
8
+ ARG IMAGE_VERSION=2.2.1
9
9
  ARG IMAGE_RELEASE=20251226
10
10
  ARG IMAGE_ALIAS=latest
11
11
 
@@ -31,7 +31,7 @@ WORKDIR /app
31
31
  ENV HOME=/app
32
32
 
33
33
  # install tool
34
- RUN npm install -g @rse/nunjucks-cli
34
+ RUN npm install -g @rse/nunjucks-cli @rse/nunjucks-addons
35
35
 
36
36
  # cleanup Alpine
37
37
  RUN rm -rf /var/cache/apk/*
package/README.md CHANGED
@@ -56,6 +56,8 @@ corresponding bind-mounts):
56
56
  $ docker run -i --rm ghcr.io/rse/nunjucks-cli [...] -
57
57
  ```
58
58
 
59
+ Finally, there are [pre-build binaries](https://github.com/rse/nunjucks-cli/releases) available, too.
60
+
59
61
  Command-Line Interface (CLI)
60
62
  ----------------------------
61
63
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@rse/nunjucks-cli",
3
3
  "publishConfig": { "access": "public" },
4
- "version": "2.2.1",
5
- "stdver": "2.2.1-GA",
4
+ "version": "2.2.3",
5
+ "stdver": "2.2.3-GA",
6
6
  "description": "Nunjucks Template Rendering Command-Line Interface",
7
7
  "author": {
8
8
  "name": "Dr. Ralf S. Engelschall",
@@ -60,6 +60,7 @@
60
60
  "@types/nunjucks": "3.2.6"
61
61
  },
62
62
  "scripts": {
63
+ "prepublishOnly": "npm start build",
63
64
  "start": "stx -v4 -c stx.conf",
64
65
  "test": "npm start test"
65
66
  }