braid-design-system 31.2.2 → 31.2.3
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/.changeset/README.md +2 -2
- package/.eslintrc +1 -1
- package/CHANGELOG.md +6 -0
- package/README.md +5 -5
- package/codemod/dist/index.js +249 -249
- package/codemod/dist/wrapper.js +14655 -16120
- package/color-mode/index.ts +10 -6
- package/package.json +23 -27
- package/tsconfig.json +2 -4
package/.changeset/README.md
CHANGED
|
@@ -29,7 +29,7 @@ My summary of the change
|
|
|
29
29
|
Add a changeset as part of a PR if the changes impact the consumer. A changeset is basically a markdown file which also describes the size of the change (patch, minor or major).
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
|
|
32
|
+
pnpm changeset add
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
A PR could theoretically have multiple changesets describing different changes.
|
|
@@ -42,7 +42,7 @@ The [changeset-bot](https://github.com/apps/changeset-bot) will add a reminder o
|
|
|
42
42
|
|
|
43
43
|
### Github action creates a changeset PR (kind of like renovate)
|
|
44
44
|
|
|
45
|
-
After merging the PR to master, a new PR is automatically created that contains the result of `
|
|
45
|
+
After merging the PR to master, a new PR is automatically created that contains the result of `pnpm changeset version`.
|
|
46
46
|
|
|
47
47
|
This:
|
|
48
48
|
|
package/.eslintrc
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/** THIS FILE IS GENERATED BY SKU, MANUAL CHANGES WILL BE DISCARDED **/
|
|
2
2
|
{
|
|
3
|
-
"extends": "/home/runner/work/braid-design-system/braid-design-system/node_modules/eslint-config-seek/.eslintrc.js"
|
|
3
|
+
"extends": "/home/runner/work/braid-design-system/braid-design-system/node_modules/.pnpm/eslint-config-seek@7.0.8_eslint@7.30.0+typescript@4.4.2/node_modules/eslint-config-seek/.eslintrc.js"
|
|
4
4
|
}
|
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -87,19 +87,19 @@ If you're migrating from an existing style guide, please refer to the [Style Gui
|
|
|
87
87
|
|
|
88
88
|
## Local Development
|
|
89
89
|
|
|
90
|
-
This project uses [
|
|
90
|
+
This project uses [pnpm](https://pnpm.io/) for development dependencies.
|
|
91
91
|
|
|
92
|
-
Installing with `
|
|
92
|
+
Installing with `pnpm` is required to ensure dependencies match the current [pnpm-lock.yaml](./pnpm-lock.yaml).
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
|
-
$
|
|
96
|
-
$
|
|
95
|
+
$ pnpm install
|
|
96
|
+
$ pnpm start
|
|
97
97
|
```
|
|
98
98
|
|
|
99
99
|
Start a local Storybook server:
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
$
|
|
102
|
+
$ pnpm storybook
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
## Contributing
|