The following files trees are automatically generated by a task in verbfile.js.
- generated files: trees representing the actual generated "dest" files for each task
- source files: trees representing the source files and templates used by each task
(See Generate's customization docs {customization.md} to learn how to override individual templates.)
Files generated by each task (e.g. dest
files). See the Generate customization docs {customization.md} to learn how to override individual templates.
Note that diffs are base on comparisons against the files generated by the default
task. Additionally, some tasks generate the same files, but with different contents (for example, the contents of index.js
differs based on the task).
Files generated by the default task:
.
└── test.js
Files generated by the base task:
.
└── test.js
Files generated by the generator task:
.
+└─┬ test
├── test.js
+ └── plugin.js
Files generated by the updater task:
.
+└─┬ test
├── test.js
+ └── plugin.js
The following trees represent the source files or templates that are used by each task. You'll see that most of the tasks use at least one "micro-generator" to generate a specific file.
Source files and/or libraries used by the default task:
.
└─┬ templates
├── base.js
└── test.js
Source files and/or libraries used by the base task:
.
└─┬ templates
└── base.js
Source files and/or libraries used by the generator task:
.
└─┬ scaffolds
└─┬ generator
└─┬ templates
├── plugin.js
└── test.js
Source files and/or libraries used by the updater task:
.
└─┬ scaffolds
└─┬ updater
└─┬ templates
├── plugin.js
└── test.js