slippers-ui 3.1.41 → 3.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/icons/index.js +1572 -1504
- package/icons/ChartGraph.vue +3 -0
- package/icons/CloudPod.vue +3 -0
- package/icons/Deployments.vue +3 -0
- package/icons/TanukiAi.vue +3 -0
- package/icons/index.ts +4 -0
- package/icons.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Slippers uses [Storybook](https://storybook.js.org/) to enable component explora
|
|
|
21
21
|
|
|
22
22
|
1. Clone the [Slippers project](https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui).
|
|
23
23
|
2. Install the dependecies using the version of node specified in [.npmrc](https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui/-/blob/main/.npmrc) - `npm install`.
|
|
24
|
-
3. Run Storybook - `yarn storybook
|
|
24
|
+
3. Run Storybook - `yarn storybook build` to build for production, `yarn storybook dev` for local development.
|
|
25
25
|
4. Storybook should now be running at: http://localhost:6009/.
|
|
26
26
|
|
|
27
27
|
**Updating the slippers-ui NPM package**
|
|
@@ -30,7 +30,7 @@ Slippers uses [Storybook](https://storybook.js.org/) to enable component explora
|
|
|
30
30
|
2. If needed, create/update .stories so Storybook is upto date.
|
|
31
31
|
3. Increment the version number in package.json.
|
|
32
32
|
4. If needed, add component into install.js (this adds components into the build).
|
|
33
|
-
5. Build /dist folder - `yarn build
|
|
33
|
+
5. Build /dist folder - `yarn build`.
|
|
34
34
|
6. Publish to NPM - `yarn publish`.
|
|
35
35
|
7. You can optionally publish using `sh scripts/publish.sh`. Note that you must have `jq` installed. This attempts to run Step 5 and 6 and validate all of this process for you.
|
|
36
36
|
8. Merge changes into origin/main.
|