arengibook 1.0.0 → 1.0.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 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Clone ce dépôt :
|
|
|
9
9
|
git clone https://github.com/ton-pseudo/ArengiBouc.git
|
|
10
10
|
cd ArengiBouc
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Installer les dépendances :
|
|
13
13
|
|
|
14
14
|
npm install
|
|
15
15
|
|
|
@@ -18,3 +18,8 @@ npm install
|
|
|
18
18
|
npm run storybook
|
|
19
19
|
|
|
20
20
|
Storybook sera disponible ici : http://localhost:6006
|
|
21
|
+
|
|
22
|
+
## Création projet Symfony6
|
|
23
|
+
|
|
24
|
+
Pour tester l'intégration des composants Storybook, vous pouvez créer un projet symfony6
|
|
25
|
+
Dans ce projet,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arengibook",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "vite",
|
|
16
|
+
"build:variants": "node scripts/export-variants.mjs",
|
|
17
|
+
"release": "npm run build:variants && npm version minor && npm publish",
|
|
18
|
+
"prepublishOnly": "npm run build:variants",
|
|
16
19
|
"build": "rollup -c",
|
|
17
20
|
"lint": "eslint .",
|
|
18
21
|
"preview": "vite preview",
|