@rse/nunjucks-cli 1.4.2 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +13 -5
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -4,8 +4,12 @@ nunjucks-cli
4
4
 
5
5
  **Nunjucks Template Rendering Command-Line Interface**
6
6
 
7
- <p/>
8
- <img src="https://nodei.co/npm/@rse/nunjucks-cli.png?downloads=true&stars=true" alt=""/>
7
+ [![github (author stars)](https://img.shields.io/github/stars/rse?logo=github&label=author%20stars&color=%233377aa)](https://github.com/rse)
8
+ [![github (author followers)](https://img.shields.io/github/followers/rse?label=author%20followers&logo=github&color=%234477aa)](https://github.com/rse)
9
+ [![github (project stdver)](https://img.shields.io/github/package-json/stdver/rse/nunjucks-cli?logo=github&label=project%20stdver&color=%234477aa)](https://github.com/rse/nunjucks-cli)
10
+ <br/>
11
+ [![npm (project release)](https://img.shields.io/npm/v/%40rse/nunjucks-cli?logo=npm&label=npm%20release&color=%23cc3333)](https://npmjs.com/@rse/nunjucks-cli)
12
+ [![npm (project downloads)](https://img.shields.io/npm/dm/%40rse/nunjucks-cli?logo=npm&label=npm%20downloads&color=%23cc3333)](https://npmjs.com/@rse/nunjucks-cli)
9
13
 
10
14
  Abstract
11
15
  --------
@@ -20,6 +24,8 @@ It optionally can load Nunjucks addons like the ones from the companion
20
24
  Installation & Usage
21
25
  --------------------
22
26
 
27
+ For the installation via Node Package Manager (NPM) use:
28
+
23
29
  ```sh
24
30
  # plain functionality
25
31
  $ npm install -g @rse/nunjucks-cli
@@ -30,7 +36,7 @@ $ npm install -g @rse/nunjucks-cli @rse/nunjucks-addons
30
36
  $ nunjucks -e @rse/nunjucks-addons [...]
31
37
  ```
32
38
 
33
- Alternatively, instead of globally installing it, you can also use it on-the-fly:
39
+ Alternatively, instead of globally installing it, you can also use it on-the-fly with NPM's npx(1) utility:
34
40
 
35
41
  ```sh
36
42
  # plain functionality
@@ -41,8 +47,10 @@ $ npx --yes --package @rse/nunjucks-cli --package @rse/nunjucks-addons -- \
41
47
  nunjucks -e @rse/nunjucks-addons [...]
42
48
  ```
43
49
 
44
- Options
45
- -------
50
+ Command-Line Interface (CLI)
51
+ ----------------------------
52
+
53
+ Short excerpt of the CLI options and arguments from the companion [Unix manpage](nunjucks.md):
46
54
 
47
55
  ```
48
56
  $ nunjucks
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@rse/nunjucks-cli",
3
3
  "publishConfig": { "access": "public" },
4
- "version": "1.4.2",
4
+ "version": "1.4.3",
5
+ "stdver": "1.4.2.20230826-GA",
5
6
  "description": "Nunjucks Template Rendering Command-Line Interface",
6
7
  "author": {
7
8
  "name": "Dr. Ralf S. Engelschall",