1 $group
2 $
3 var sect = {
4 title: 'Wizzi CLI'
5 };
6 section( §)
7 p The Wizzi command line interface (CLI) is used to perform basic functionality,
8 \b such as executing a Wizzi Production,
9 \b creating a new Wizzi Package based on a starter,
10 \b wizzifying an existing artifact or a folder of artifacts.
11 p The Wizzi CLI is available via [npm](https://www.npmjs.com/) and should be installed globally
12 bash-panel
13 title How to install the Wizzi CLI
14 ittf
15 npm install -g wizzi-cli
16 h2 CLI Commands
17 ul
18 li
19 a generate artifacts
20 href #generate
21 li
22 a create package
23 href #create
24 li
25 a wizzify
26 href #fy
27 li
28 a help
29 href #help
30 bash-panel
31 title The generate command
32 ittf
33 + wizzi [configname]
34 p Executes a Wizzi Production described in a wizzi.config[.configname].js file.
35 p The config file is searched in the current folder and its parents.
36 bash-panel
37 title The default productions
38 ittf
39 + wizzi
40 p Tee wizzi command, with no parameters, executes the default production,
41 \b that must be defined in the wizzi.config.js file, located in the current folder or its parents.
42 bash-panel
43 title The create package command
44 ittf
45 wizzi create
46 p Executes a Wizzi Meta Production creating a new Wizzi Package for a Wizzi Production Type.
47 p An 'inquirer' dialog asks for the Wizzi Production Type and other available options.
48 ul Available starters
49 li pure js
50 li webpack
51 li webpack + react + material-ui
52 li gatsby
53 li express
54 li Wizzi Plugin
55 bash-panel
56 title The wizzify command
57 ittf
58 wizzi fy --source <filepath|folderpath> --dest <filepath|folderpath>
59 p The `wizzi fy` command executes the 'wizzifying' of a file or folder (for example creates a .js.ittf document from a .js file).
60 table
61 thead
62 th Argument
63 th Description |
64 tbody
65 tr
66 td --source|-s <filepath|folderpath>
67 td The source file or folder path
68 tr
69 td --dest|-d <filepath|folderpath>
70 td The destination file or folder path
71 bash-panel
72 title The help command
73 ittf
74 wizzi --help