This is a monorepo containing the following packages:
web-components
react-components
css-library
storybook
design-system-dashboard-cli
The core
package is for bundling the web-components
and react-components
packages into one for publishing.
The storybook
package is for the combined story files from each *-components
package.
The design-system-dashboard-cli
package is used to gather metrics on design system usage.
cd packages/web-components/
yarn install
yarn build
yarn build-bindings
(build React bindings)yarn watch:stencil
(optional)
cd ../react-components/
yarn install
yarn build
cd ../core/
yarn install
yarn build
cd ../storybook/
yarn install
yarn storybook
This will allow you to run Storybook locally to view all components
To run unit tests for all components, the commands are:
yarn test
and
yarn test.watch
To test a single file, run:
npx stencil test --e2e -- src/components/[component-name]/test/[component-name].e2e.ts
Replace [component-name]
with the name of the component you want to test. Optionally, you can add --watchAll
after --e2e
to watch the file for changes. For example:
npx stencil test --e2e --watchAll -- src/components/[component-name]/test/[component-name].e2e.ts
Another option is to use wildcards to query for certain tests. For example, to run all tests for the va-accordion
component, you can run:
npx stencil test --e2e -- src/components/va-accordion/test/va-accordion-*
This repo uses Chromatic
to streamline reviews by publishing your changes online. A link containing your changes is automatically added to pull requests to aid others when reviewing your code. In order for this link to work, please follow these rules when naming your branch:
- Your branch must contain only lowercase letters, numbers and dashes
- Your branch must not exceed 37 characters
Our web components have linting which checks for hard-coded user-facing strings. At the moment this linting isn't integrated into CI - so you will only see it if you run yarn lint
or if your editor has ESLint integration through a plugin.
Local development can be done using Storybook by following the complete build steps outlined in Running Build via Storybook.
Contributors are encouraged to test their changes in vets-website
using Verdaccio. What is Verdaccio? From the website:
Verdaccio is a simple, zero-config-required local private NPM registry. No need for an entire database just to get started…
Verdaccio allows contributors to publish a new version of the VA Design System component library on their local machine, and preview vets-website
with their changes.
-
VA Design System component library and vets-website require different versions of NodeJS. Be sure you have NVM installed before you begin.
-
Download Node
v14.15.0
and a current Nodev18.x.x
orv20.x.x
-
Verdaccio also requires Python3. Ensure you have Python3 installed by opening a terminal window and typing the following command:
which python3 # Should see output like /usr/bin/python3
You should see an execution path if Python3 is installed. If not, install it and type
which python3
again in a new terminal window.
-
Install Verdaccio using NPM or Yarn:
# Ensure Verdaccio compatibility with vets-website nvm use 14.15.0 # If you're using NPM npm install --location=global [email protected] # If you're using Yarn yarn global add [email protected]
-
Verify Verdaccio was installed correctly.
verdaccio --version # Should see output like v5.5.0
-
Start Verdaccio on your local machine. The server will be running at
localhost:4873
.verdaccio
-
Create a new Verdaccio user by entering this command and following the prompts.
npm adduser --registry http://localhost:4873/
The next step is to update the core
and web-component
package versions in their respective package.json
files. Note: You must use Node v18.x.x
or v20.x.x
for this step.
-
Navigate to
component-library
and switch to Node[18, 20]
cd component-library/ nvm use 18.x.x # Or version 20 nvm use 20.x.x
-
Navigate to
packages/web-components
and update the package version. Assuming the current version is10.1.1
, you could change the version to10.1.2-rc1
or something similar.! packages/web-components/package.json - "version": "10.1.1" + "version": "10.1.2-rc1"
-
Navigate to
packages/core
and update the package version using the same logic! packages/core/package.json - "version": "15.0.1" + "version": "15.0.2-rc1"
-
Still in the
packages/core
package.json file, update the VADS dependency entry! packages/core/package.json dependencies: { - "@department-of-veterans-affairs/web-components": "workspace:*" + "@department-of-veterans-affairs/web-components": "^10.2.2-rc1" }
-
Build the components using the Running Build via Storybook instructions. Ignore the last step to start Storybook; you won't need it for this process.
-
Publish the
core
package to Verdacciocd ../packages/core/ npm publish --registry http://localhost:4873
-
Publish the
web-component
package to Veracciocd ../packages/web-components/ npm publish --registry http://localhost:4873
You're now ready to switch to vets-website
and update the VADS dependency. Note: You must use Node v14.15.0
for this step.
-
Run the following commands to point to your local Verdaccio registry
cd vets-website/ nvm use 14.15.0 # Ensure correct Node version yarn config set registry http://localhost:4873 npm config set registry http://localhost:4873
-
Add the local
core
package tovets-website
and start the serveryarn add -W @department-of-veterans-affairs/[email protected] yarn watch
After you are finished testing, reset vets-website
to use the standard registry. Note: You must use Node v14.15.0
for this step.
# Using NPM
nvm use 14.15.0 # Ensure correct Node version
npm config set registry https://registry.yarnpkg.com/
# Or using Yarn
nvm use 14.15.0
yarn config set registry https://registry.yarnpkg.com/
yarn config set npmRegistryServer https://registry.yarnpkg.com/
-
If you encounter Webpack errors during the
yarn watch
step invets-website
, try deleting thenode_modules/
folder, then reinstalling dependencies.cd vets-website/ rm -rf node_modules/ # Careful with this one yarn install yarn watch
-
If you encounter errors in the
component-library
orvets-website
build or watch steps, try changing your Node version.nvm use 14.15.0 nvm use 18.x.x OR nvm use 20.x.x
To publish changes from the react-components
subpackage, make sure the version number in packages/react-components/package.json
and the version number in packages/core/package.json
have been updated to be one ahead of the published versions.
To publish changes from the web-components
subpackage, make sure the version number in packages/web-components/package.json
and the version number in packages/core/package.json
have been updated to be one ahead of the published versions.
yarn version
is available to use to make changes in the CLI. To change the version of the package you are working on run one of the following commands: yarn version major
, yarn version minor
, or yarn version patch
. For guidance on which command to use please see below.
The Design System Team will create a release minimally at the beginning of each sprint (every other Thursday), and may additionally be performed as-needed when critical bug fixes need to go out. Reach out in #vfs-platform-support
or #platform-design-system
Slack channel if you have a need for an unscheduled release.
For Design System Team only:
- If you are unsure if a new release should be created, check with the Release Manager and/or the team first.
- The DST Release Manager is the engineer on duty for the weekly support rotation.
- Create a new
component-library
PR that updates the package.json version in the packages that updates have been made:core
(required) - packages/core/package.json must be updated for the publishing workflowweb-components
(if needed)css-library
(if needed)react-components
(if needed)
- From the repo's homepage click on "Releases" in the right-hand sidebar.
- Click on the "Draft a new release" button near the top of the page.
- Click on the "Choose a tag" drop-down and type the letter
v
followed by the new "core" version number. The target should remainmain
.- Example:
v16.1.0
- Example:
- For the release title, type the same thing you entered for the tag.
- Example:
v16.1.0
- Example:
- Click on the "Generate release notes" button.
- If the button is disabled, double-check that the tag/version number is correct and hasn't been released before.
- Review the release notes for any typos and/or unneeded notes.
- The release notes are intended for public use so they should be professional in tone, easily understandable, and concise.
- Ensure the "Set as the latest release" checkbox is checked.
- Take a screenshot of the release notes and post in the
#platform-design-system-team
channel on Slack.- This is to double-check that everything looks good, that there aren't any last-minute additions to the release that need to be included, and for general awareness of what will be released.
- Click the "Publish release" button. GitHub Actions will take care of any necessary build and publishing steps.
- You can watch to make sure the release is created successfully from the Github Actions tab.
- Create a PR for the following repositories that updates the
component-library
dependency versions:
This repo follows semantic versioning. Here are some examples of which changes correspond to which version (MAJOR, MINOR, or PATCH) increase.
- Component is removed
- Component API is changed and it causes a breaking change
- New component is added
- New variant is added for a component
- Non-breaking or backwards compatible component API change
- Accessibility fix
- Styling fix
- Functionality fix