@grantbii/design-system 1.29.0 → 2.0.0
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 +17 -4
- package/core/archive/index.d.ts +0 -1
- package/core/archive/index.js +0 -1
- package/core/archive/index.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/core/archive/TallyModal.d.ts +0 -9
- package/core/archive/TallyModal.js +0 -46
- package/core/archive/TallyModal.js.map +0 -1
- package/stories/archive/TallyModal.stories.d.ts +0 -12
- package/stories/archive/TallyModal.stories.js +0 -20
- package/stories/archive/TallyModal.stories.js.map +0 -1
package/README.md
CHANGED
|
@@ -35,6 +35,12 @@ The pages auto-update as you edit the files.
|
|
|
35
35
|
|
|
36
36
|
## Develop
|
|
37
37
|
|
|
38
|
+
### Structure
|
|
39
|
+
|
|
40
|
+
The actual UI components live in `core/`.
|
|
41
|
+
|
|
42
|
+
Storybook stories live in `stories/`.
|
|
43
|
+
|
|
38
44
|
### Versioning
|
|
39
45
|
|
|
40
46
|
Bump version number in `package.json`
|
|
@@ -55,10 +61,17 @@ cwebp -exact -lossless -progress your_image.png -o your_image.webp
|
|
|
55
61
|
|
|
56
62
|
Bump version in `package.json`
|
|
57
63
|
|
|
58
|
-
Check which files would be published
|
|
64
|
+
Check which files would be published:
|
|
59
65
|
|
|
60
|
-
|
|
66
|
+
```bash
|
|
67
|
+
npm run build
|
|
68
|
+
cd dist/
|
|
69
|
+
npm publish --dry-run
|
|
70
|
+
```
|
|
61
71
|
|
|
62
|
-
|
|
72
|
+
When a commit is pushed to the `prod` branch, the GitHub Actions workflow `deploy-prod.yaml` will automatically:
|
|
63
73
|
|
|
64
|
-
|
|
74
|
+
- build the package with `npm run build`
|
|
75
|
+
- publish the package to npm from `dist/`
|
|
76
|
+
- build Storybook with `npm run build-storybook`
|
|
77
|
+
- publish Storybook to GitHub Pages
|
package/core/archive/index.d.ts
CHANGED
package/core/archive/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../core/archive/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAoB,MAAM,gBAAgB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../core/archive/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAoB,MAAM,gBAAgB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC","sourcesContent":["export { default as LocationIcon } from \"./LocationIcon\";\nexport { default as RadioButtons, type RadioOption } from \"./RadioButtons\";\nexport { default as YesNoOptions } from \"./YesNoOptions\";\n"]}
|
package/package.json
CHANGED