@bazooka_se/make
v2.0.0
Published
A scaffolding tool for creating components in an existing project.
Maintainers
Keywords
Readme
Installation
npm i @bazooka_se/makeAdd a script entry to your package.json file:
"scripts": {
"make": "bazooka-make"
}Run the script and follow prompts to generate a new component:
npm run makeCommand-line flags
Any value can be passed as a flag. Flags that are supplied are not prompted for — if you supply all of them, the tool runs without any prompts at all.
| Flag | Short | Description |
| -------------------- | ----- | ------------------------------------------------------------ |
| --template <name> | -t | Template to use (skips the template prompt) |
| --name <name> | -n | Name of the new component (skips the name prompt) |
| --subfolder <name> | -s | Subfolder under the destination (skips the subfolder prompt) |
| --help | -h | Show usage and exit |
If a flag value is invalid (e.g. the template doesn't exist), the tool aborts with the list of valid choices instead of falling back to a prompt.
Examples
Fully non-interactive — no prompts shown:
npm run make -- --template component --subfolder widgets --name MyButtonThe -- is required so that npm forwards the flags to bazooka-make instead of consuming them itself. When invoking the binary directly (e.g. via npx) you can drop it:
npx bazooka-make -t component -s widgets -n MyButtonShow the help text:
npx bazooka-make --helpSetup
To get started, create a directory in your project root called templates with directories for each template inside it. Template directory name can be changed in settings, see below.
Example directory structure:
/templates
/component
/containerGlobal settings
An optional settings file can be created in your project root to change some settings. Create a file called bazooka.make.json and add your settings as an object:
{
"templates_dir": "templates"
}Supported settings
The following values are supported at the moment:
| Key | Default | Type | Description |
| --------------- | ----------- | -------- | ------------------------------------- |
| templates_dir | templates | String | Directory where templates are located |
Templates
A template can contain both files and directories. Empty directories are ignored.
See example templates here.
Template data
The templates will be passed data that can be accessed in both files and filenames. Currently the only data passed is the name you enter, together with case convertions, see below.
Use the following syntax to access the passed data:
# In a filename
[%name%]
[%name.toScreamingSnakeCase%]# Inside a file
<% name %>
<% name.toDashedCase %>Available case conversions
| | Example | Note |
| ---------------------- | -------------- | ------------------ |
| toUpperCamelCase | UpperCamelCase | Same as default |
| toLowerCamelCase | lowerCamelCase | |
| toDashedCase | dashed-case | |
| toKebabCase | kebab-case | Same as dashedCase |
| toSnakeCase | snake_case | |
| toScreamingSnakeCase | SNAKE_CASE | |
Filenames
All files must have the file ending .template to be included.
Filename examples
| Template | Result |
| ------------------------------- | --------------------------- |
| index.js.template | index.js |
| [%name%].module.scss.template | ComponentName.module.scss |
Template settings
Each template can have a .settings file that supports the following settings:
| Setting | Default | Description |
| ------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| destination | null | This is generated from selected template by default. |
| new_folder | false | Set to false to place template content in the root of destination folder. |
| prompt_subfolder | true | Set to true if destination folder has subfolders where generated component should be placed. |
| naming_convention | | A string or an array of strings with regular expressions that given name should match. Disable naming convention by setting a falsy value. Default convention is UpperCamelCase. |
{
"destination": "tests/",
"prompt_subfolder": true,
"new_folder": false,
"naming_convention": ["^my[A-Z].+$", "[^_]"]
}Example .settings file.
