@maboussoleaidant/design-system 0.1.0 → 0.1.2
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 +6 -2
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -19,10 +19,14 @@ npm install @maboussoleaidant/design-system
|
|
|
19
19
|
]
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
### WordPress (via CDN)
|
|
22
|
+
### WordPress / Sites vitrines (via CDN)
|
|
23
23
|
|
|
24
24
|
```html
|
|
25
|
-
|
|
25
|
+
<!-- Composants .mba-* uniquement -->
|
|
26
|
+
<link rel="stylesheet" href="https://unpkg.com/@maboussoleaidant/design-system/dist/mba-design-system.min.css">
|
|
27
|
+
|
|
28
|
+
<!-- Avec utilitaires Tailwind (p-sm, text-primary-500, gap-md, etc.) -->
|
|
29
|
+
<link rel="stylesheet" href="https://unpkg.com/@maboussoleaidant/design-system/dist/mba-tailwind.min.css">
|
|
26
30
|
```
|
|
27
31
|
|
|
28
32
|
### Tokens uniquement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maboussoleaidant/design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Design System Ma Boussole Aidant - Tokens et composants CSS",
|
|
6
6
|
"main": "dist/mba-design-system.css",
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"./tailwind": "./dist/mba-tailwind.css"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"dist/"
|
|
13
|
+
"dist/",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
14
16
|
],
|
|
15
17
|
"scripts": {
|
|
16
18
|
"prepublishOnly": "npm run build",
|