fds-vue-core 4.7.4 → 4.8.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 CHANGED
@@ -5,7 +5,7 @@ FDS Vue Core is a Vue 3 component library that provides design tokens, icons, an
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- yarn add fds-vue-core
8
+ pnpm add fds-vue-core
9
9
  ```
10
10
 
11
11
  ## Peer Dependencies
@@ -13,7 +13,7 @@ yarn add fds-vue-core
13
13
  Make sure you have the required peer dependencies installed:
14
14
 
15
15
  ```bash
16
- yarn add vue@^3.5.0
16
+ pnpm add vue@^3.5.0
17
17
  ```
18
18
 
19
19
  ## Postinstall Script
@@ -24,12 +24,12 @@ To automatically sync VS Code settings when installing or updating `fds-vue-core
24
24
  {
25
25
  "scripts": {
26
26
  "sync:vscode:settings": "node node_modules/fds-vue-core/scripts/sync-vscode-settings.mjs || true",
27
- "postinstall": "yarn sync:vscode:settings"
27
+ "postinstall": "pnpm run sync:vscode:settings"
28
28
  }
29
29
  }
30
30
  ```
31
31
 
32
- This will automatically sync VS Code settings after every `yarn install`. The `|| true` ensures the install doesn't fail if the script encounters any issues.
32
+ This will automatically sync VS Code settings after every `pnpm install`. The `|| true` ensures the install doesn't fail if the script encounters any issues.
33
33
 
34
34
  ## Setup
35
35
 
@@ -140,7 +140,7 @@ All components are fully typed. Type definitions are included in the package.
140
140
 
141
141
  - [Usage Guide](./src/docs/Usage.md) - Detailed usage instructions
142
142
  - [Configuration Files](./CONFIG.md) - TypeScript, ESLint, Prettier, and VS Code configuration
143
- - [Storybook](./) - Component API documentation and examples (run `yarn storybook`)
143
+ - [Storybook](./) - Component API documentation and examples (run `pnpm storybook`)
144
144
 
145
145
  ### Publish to npm
146
146