@lmfaole/basics 0.1.0 → 0.1.1
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,13 @@ Storybook Test coverage is enabled through the Vitest addon. In the Storybook UI
|
|
|
31
31
|
|
|
32
32
|
The Visual Tests panel is provided by `@chromatic-com/storybook`. To run cloud visual checks, connect the addon to a Chromatic project from the Storybook UI.
|
|
33
33
|
|
|
34
|
+
## Releasing
|
|
35
|
+
|
|
36
|
+
1. Update `package.json` to the version you want to ship.
|
|
37
|
+
2. Publish the package to npm with `npm publish --access public --registry=https://registry.npmjs.org`.
|
|
38
|
+
3. Push a matching git tag such as `v0.1.0`.
|
|
39
|
+
4. GitHub Actions will run the test suite, pack the published files, and create a GitHub Release with the tarball attached.
|
|
40
|
+
|
|
34
41
|
## Basic Tabs
|
|
35
42
|
|
|
36
43
|
```html
|