3.0.1 • Published 2 years ago
@tokilabs/pug3-cli v3.0.1
@tokilabs/pug3-cli
Pug 3 CLI with many fixes and improvements
@tokilabs/pug3-cli is a CLI for running Pug, updated to Pug 3.0.2. It's a fork of the original pug-cli, which still uses PUG 2.
Usage
$ pug3 [options] [dir|file ...]Render <file>s and all files in <dir>s. If no files are specified,
input is taken from standard input and output to standard output.
Options
-h, --help output usage information
-V, --version output the version number
-O, --obj <str|path> JSON/JavaScript/YAML options object or file
-o, --out <dir> output the rendered HTML or compiled JavaScript to
<dir>
-p, --path <path> filename used to resolve includes
-b, --basedir path used as root directory to resolve absolute includes
-P, --pretty compile pretty HTML output
-c, --client compile function for client-side runtime.js
-n, --name <str> the name of the compiled template (requires --client)
-D, --no-debug compile without debugging (smaller functions)
-w, --watch watch files for changes and automatically re-render
-E, --extension <ext> specify the output file extension
-s, --silent do not output logs
--name-after-file name the template after the last section of the file
path (requires --client and overriden by --name)
--doctype <str> specify the doctype on the command line (useful if it
is not specified by the template)Examples
Render all files in the templates directory:
$ pug3 templatesCreate {foo,bar}.html:
$ pug3 {foo,bar}.pugUsing pug over standard input and output streams:
$ pug3 < my.pug > my.html
$ echo "h1 Pug!" | pugRender all files in foo and bar directories to /tmp:
$ pug3 foo bar --out /tmpSpecify options through a string:
$ pug3 -O '{"doctype": "html"}' foo.pug
# or, using JavaScript instead of JSON
$ pug3 -O "{doctype: 'html'}" foo.pugSpecify options through a file:
$ echo "exports.doctype = 'html';" > options.js
$ pug3 -O options.js foo.pug
# or, JSON works too
$ echo '{"doctype": "html"}' > options.json
$ pug3 -O options.json foo.pug
# YAML works as well
$ pug3 -O options.yaml foo.pugInstallation
Global installation
npm install -g @tokilabs/pug3-cliUse --help to learn how to use it
pug3 --helpLocal installation
yarn add -D install @tokilabs/pug3-cliRun with yarn:
yarn pug3 ...Original
The original project this was forked from:
Thank You!
This fork started by merging the contributions of the fellas below:
License
MIT