Yeoman generator for applications on VA.gov
Installation
The generator is already installed as a devDependency
of vets-website
.
Usage
From vets-website
, run npm run new:app
.
Follow the instructions on screen.
For more details on answering the prompts, the following documentation might be helpful.
These resources are also provided by the generator at startup.
Contributing
Making changes
There are two generators: one for general (non-form) apps and one for form apps.
- The latter runs on top of the former if certain prompts are answered to generate a form app.
- Each generator has its own set of templates from which it generates files in the app structure.
For specifics on writing a generator, refer to the official Yeoman documentation.
Testing changes
-
Make your modified generator available as a global module.
From the root of this repo (generator-vets-website
):
npm link
-
Run your modified generator in your local vets-website
.
From the root of vets-website
:
npm link @department-of-veterans-affairs/generator-vets-website
npx yo
Due to the link, any further changes to the generator will automatically be included when you run it within your local vets-website
repo.
-
When you're done testing your changes, clean up the links:
npm unlink --no-save @department-of-veterans-affairs/generator-vets-website
npm unlink