-
Notifications
You must be signed in to change notification settings - Fork 8
List
Introduced in Ignite UI CLI v1.3.0
The ig list lists all templates for the specified framework and type. When you run the command within a project folder it will list all templates for the project's framework and type, even if you provide different ones.
framework
--framework (alias: -f) default value: "jquery"
Framework to setup the template for. Your custom template will be available only when creating a project in the respective framework. The supported frameworks are jQuery, Angular and React.
type
--type (alias: -t)
The available project types depend on the selected framework. Currently, Angular, React, Web Components and jQuery projects support a single type only - `igx-ts`, `igr-ts`, `igc-ts` and `js` respectively. As those are default project types, you do not need to provide `--type` argument explicitly.
To list all templates for specific framework run list outside a project folder. Following are examples of how to use the list command:
| Framework | Code |
|---|---|
| Angular |
ig list --framework=angular --type=igx-tsUsing aliases:
ig l -f=angular -t=igx-ts |
| React |
ig list --framework=react --type=igr-tsUsing aliases:
ig l -f=react -t=igr-ts |
| Web Components |
ig list --framework=webcomponents --type=igc-tsUsing aliases:
ig l -f=webcomponents -t=igc-ts |
| jQuery |
ig list --framework=jqueryUsing aliases:
ig l -f=jquery |
To list all templates for specific project run list from the project folder:
ig list