@cocoar/ui 0.1.0-beta.100 → 0.1.0-beta.109

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -8,7 +8,23 @@ Complete Cocoar Design System package - all UI components, overlays, and menus i
8
8
  npm install @cocoar/ui
9
9
  # or
10
10
  pnpm add @cocoar/ui
11
+ # or
12
+ yarn add @cocoar/ui
13
+ ```
14
+
15
+ ### Important: pnpm Configuration
16
+
17
+ If you're using **pnpm**, you **must** add this to your `.npmrc` file in your project root:
18
+
11
19
  ```
20
+ public-hoist-pattern[]=@cocoar/*
21
+ ```
22
+
23
+ This ensures that all Cocoar packages and their dependencies are properly hoisted and accessible.
24
+
25
+ **Why is this required?** pnpm uses strict isolated node_modules by default. The `@cocoar/ui` meta-package re-exports from sub-packages, which won't work without hoisting.
26
+
27
+ **npm and yarn users:** No configuration needed - works out of the box!
12
28
 
13
29
  ## What's Included
14
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocoar/ui",
3
- "version": "0.1.0-beta.100",
3
+ "version": "0.1.0-beta.109",
4
4
  "description": "Complete Cocoar Design System - all UI components, overlays, and menus in one package",
5
5
  "author": "Cocoar",
6
6
  "license": "Apache-2.0",
@@ -34,10 +34,10 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@cocoar/ui-components": "0.1.0-beta.100",
38
- "@cocoar/ui-menu": "0.1.0-beta.100",
39
- "@cocoar/ui-overlay": "0.1.0-beta.100",
40
- "@cocoar/ui-tokens": "0.1.0-beta.100"
37
+ "@cocoar/ui-components": "0.1.0-beta.109",
38
+ "@cocoar/ui-menu": "0.1.0-beta.109",
39
+ "@cocoar/ui-overlay": "0.1.0-beta.109",
40
+ "@cocoar/ui-tokens": "0.1.0-beta.109"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@angular/core": "^20.3.0"