This repo contains code used in the Harness CD Community Edition which is licensed under the PolyForm Shield License 1.0.0. This repo also contains code belonging to Harness CD Enterprise Plan which is licensed under the PolyForm Free Trial License 1.0.0. You may obtain a copy of these licenses in the licenses directory at the root of this repository.
This repository contains implementation of Next Generation UI Architecture.
This repo uses a monorepo architechture. We are using yarn workspaces for dependency managment and lerna for package publishing
List of packages:
main
branch is on v3 and uses formik v2v2
branch is on v2 and uses formik v1
Note: If you need your fix/feature in UICore v2, please open a PR against v2 barnch too.
yarn setup
- to set up authentication to access Github Package Registryyarn storybook
- to start storybookyarn build
- to build all the packages locally.
Note: You will need to build the packages once before you start working on the codebase, else you will see error messages relating to package resolutions.
Icons are under available packages/icons
folder. Please follow below steps to add new icons -
- Place the new icon (in SVG format) inside
packages/icons/src
directory. - Run
yarn ui:icons
(under the root directory) - Commit all the changes and open a PR.
Note: For uicore/icons
to be auto published, please ensure to bump up the package version in packages/icons/package.json
(only if an immediate new release is required)
yarn storybook
- to start storybook
Then navigate to http://localhost:6006 to see storybook.
You can also use yalc
package for development with nextgen ui
Install it globally
yarn global add yalc
Build and publish locally. This should be done inside the particular package's folder.
# package: @harness/uicore
# dir: packages/uicore
yarn build && yalc publish
You'll see the published version like @harness/[email protected] published in store.
Install it in nextgenui
yalc add @harness/[email protected]
Note: The version number must match to whatever was printed on the screen during publish.
Please do not commit any changes made by yalc
in nextgenui.
Publishing is done using Harness CI and stored in Harness GitHub Package Registry.
As soon as the PR is merged into master, a new release will be built and published into Harness GitHub Package Registry.
Run the following to update the Storybook Image Snapshots:
yarn run build-storybook && yarn run do-puppeteer-storyshots -u
note: You might want to set
PUPPETEER_EXECUTABLE_PATH="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
on MacOS
Documentation is published at uicore.harness.io.