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.
@@ -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
- yarn changeset add
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 `yarn changeset version`.
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
@@ -1,5 +1,11 @@
1
1
  # braid-design-system
2
2
 
3
+ ## 31.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Update experimental color mode flags ([#1050](https://github.com/seek-oss/braid-design-system/pull/1050))
8
+
3
9
  ## 31.2.2
4
10
 
5
11
  ### Patch Changes
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 [Yarn](https://yarnpkg.com) for development dependencies.
90
+ This project uses [pnpm](https://pnpm.io/) for development dependencies.
91
91
 
92
- Installing with `yarn` is required to ensure dependencies match the current [yarn.lock](./yarn.lock).
92
+ Installing with `pnpm` is required to ensure dependencies match the current [pnpm-lock.yaml](./pnpm-lock.yaml).
93
93
 
94
94
  ```bash
95
- $ yarn
96
- $ yarn start
95
+ $ pnpm install
96
+ $ pnpm start
97
97
  ```
98
98
 
99
99
  Start a local Storybook server:
100
100
 
101
101
  ```bash
102
- $ yarn storybook
102
+ $ pnpm storybook
103
103
  ```
104
104
 
105
105
  ## Contributing