This is a monorepo containing two main packages:
web-components
react-components
The core
package is for bundling the two main 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.
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.
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.
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
Releases will occur no less often than at the beginning of each sprint (every other Wednesday), and may additionally be performed as-needed when critical bug fixes need to go out. Please reach out to us via #vfs-platform-support or #platform-design-system 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 rest of the team first, to make sure it's worth the effort at this time.
- Get the version number from
packages/core/package.json
, ensuring it's up-to-date and new. If the core, web-components, and/or react-components packages versions haven't been updated yet, submit a PR to update them prior to performing the release, or things won't work correctly with the automation. - 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 (should look likev16.1.0
). The target should remainmain
. - For the release title, type the same thing you entered for the tag (
v{versionNumber}
). - 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. Remember that these release notes are intended for public use, so they should be professional in their tone and appearance.
- Take a screenshot of the release notes and post in the
#platform-design-system-team
channel on slack; ask for others to double-check that everything looks good and that there aren't any last-minute additions to the release that need to be included. - Back in GitHub, ensure the "Set as the latest release" checkbox is checked.
- Press the "Publish release" button. GitHub Actions will take care of any necessary build and publishing steps.
- If vets-website will need to take advantage of the latest release sooner than later, open a PR to update the dependency version there (update your local copy and then submit a PR to merge the latest version bump).
- Finally, go to your local copy of the vets-design-system-documentation repo and update the version requirement, submitting a PR for that as well.
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
-
Update
stencil.config.ts
line 16 tobuildEs5: true,
- More information on buildEs5 in Stencil
- Stencil Dev Server is run in
dev
mode
-
Within
component-library/packages/web-components/src/index.html
Web Components can be added inside of the<body>
tag for testing- Example:
<body> <va-progress-bar label="Add a label here" percent={35}></va-progress-bar> <va-segmented-progress-bar current={2} total={6}></va-segmented-progress-bar> </body>
-
Run
yarn serve
insidepackages/web-components/
to start the Stencil Dev Server
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-*