Snippet Generator
Create a theme snippet
#
UsageBy default, Nx will search for the snippet
generator in the default collection provisioned in workspace.json
.
You can specify the collection explicitly as follows:
Show what will be generated without writing to disk:
#
ExamplesGenerate a snippet in the my-theme theme:
This creates the following files:
The my-snippet.snippet.ts
file exports a MySnippetSnippet
class that now you can import in any other theme block (layout, template, section or other snippet).
#
Options#
--nameType: string
The name of the snippet.
#
--projectAlias(es): p
Type: string
The name of the project where the snippet will be generated.
#
--directoryAlias(es): d
Type: string
Create the snippet under this directory relative to src/theme/snippets (can be nested).
#
--flatDefault: false
Type: boolean
Create snippet files at the directory root rather than its own directory.
#
--liquidOnlyDefault: false
Type: boolean
When true, does not create files other than the liquid file for the new snippet.
#
--skipTestsDefault: false
Type: boolean
When true, does not create \"spec.ts\" test files for the new snippet.