@rse/nunjucks-cli 0.9.5 → 1.0.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/README.md +8 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,7 @@ nunjucks-cli
|
|
|
5
5
|
**Nunjucks Template Rendering Command-Line Interface**
|
|
6
6
|
|
|
7
7
|
<p/>
|
|
8
|
-
<img src="https://nodei.co/npm/nunjucks-cli.png?downloads=true&stars=true" alt=""/>
|
|
9
|
-
|
|
10
|
-
<p/>
|
|
11
|
-
<img src="https://david-dm.org/rse/nunjucks-cli.png" alt=""/>
|
|
8
|
+
<img src="https://nodei.co/npm/@rse/nunjucks-cli.png?downloads=true&stars=true" alt=""/>
|
|
12
9
|
|
|
13
10
|
Abstract
|
|
14
11
|
--------
|
|
@@ -21,10 +18,16 @@ an output file based on a template input file where your configuration can be ex
|
|
|
21
18
|
Installation
|
|
22
19
|
------------
|
|
23
20
|
|
|
24
|
-
```
|
|
21
|
+
```sh
|
|
25
22
|
$ npm install -g @rse/nunjucks-cli
|
|
26
23
|
```
|
|
27
24
|
|
|
25
|
+
Alternatively, instead of globally installing it, let it be automatically installed on-the-fly:
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
$ npx @rse/nunjucks-cli [...]
|
|
29
|
+
```
|
|
30
|
+
|
|
28
31
|
Usage
|
|
29
32
|
-----
|
|
30
33
|
|
package/package.json
CHANGED