@bcc-code/component-library-vue 0.7.1 → 0.7.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/README.md CHANGED
@@ -16,6 +16,15 @@ yarn add @bcc-code/component-library-vue
16
16
 
17
17
  **Peer dependency:** Vue 3.
18
18
 
19
+ **pnpm and BCC packages:** The library depends on `@bcc-code/icons-vue` and `@bcc-code/design-tokens`. To use them in your app (e.g. `import { CheckIcon } from '@bcc-code/icons-vue'` or design token imports) without adding those packages to your own `package.json`, add this to your project’s **`.npmrc`** so pnpm hoists them:
20
+
21
+ ```ini
22
+ public-hoist-pattern[]=@bcc-code/icons-vue
23
+ public-hoist-pattern[]=@bcc-code/design-tokens
24
+ ```
25
+
26
+ Then run `pnpm install` again. With npm or Yarn this is not needed.
27
+
19
28
  ## Quick start
20
29
 
21
30
  1. **Register the library** in your app (e.g. `main.ts`):