AngularApp
In order to define an angularProjects
model you need a description of the AngularApp
.
Under your project there needs to be a angular directory, this directory contains everything related to the Angular metamodel and expanders.
The angularApps
directory can contain one or more directories, each for a different AngularApp
. It is possible to have more than one AngularApp
, but usually one per project works best.
Under the model directory you can add the AngularApp
XML file.
Naming
- The name of your
AngularApp
needs to be kebab-case. - The value of the attribute
prefix
should also be kebab-case.
project
├── conf
├── applications
├── angular
. ├── angularApps
. ├── space-app
. ├── model
. └── space-app.xml
- space-app.xml
- expansionSettings.xml
<angularApp name="space-app">
<version>1.0.0</version>
<prefix>nsx</prefix>
</angularApp>
Add an expansion to the expansionSettings.xml
<expansions>
<expansion>
<type component="angularProjects" name="AngularApp"/>
<target>space-app</target> <!-- AngularApp name -->
<profile name="Std API yarn"/> <!-- Different profiles are also possible -->
</expansion>
</expansions>
note
prefix
attribute is used to set a prefix in the angular.json
and will be used by the Angular CLI to prepend created selectors.