@oub/fusion 0.3.12 → 0.3.14
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 +5 -3
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -21,10 +21,12 @@ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has a
|
|
|
21
21
|
|
|
22
22
|
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
23
23
|
|
|
24
|
-
##
|
|
24
|
+
## Getting Started
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
Running the following script will set up your environment using docker compose, and install required dependencies.
|
|
27
|
+
|
|
28
|
+
```shell
|
|
29
|
+
./scripts/project-setup.sh
|
|
28
30
|
```
|
|
29
31
|
|
|
30
32
|
### Compile and Hot-Reload for Development
|
package/package.json
CHANGED
|
@@ -58,13 +58,16 @@
|
|
|
58
58
|
"jest-junit": {
|
|
59
59
|
"outputDirectory": "coverage/storybook"
|
|
60
60
|
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"vue": ">=3.3.0"
|
|
63
|
+
},
|
|
61
64
|
"dependencies": {
|
|
62
65
|
"@uppy/core": "5.0.1",
|
|
63
|
-
"@uppy/xhr-upload": "5.0.0"
|
|
64
|
-
"vue": "3.5.21"
|
|
66
|
+
"@uppy/xhr-upload": "5.0.0"
|
|
65
67
|
},
|
|
66
68
|
"devDependencies": {
|
|
67
69
|
"@fullhuman/postcss-purgecss": "5.0.0",
|
|
70
|
+
"vue": "3.5.21",
|
|
68
71
|
"@rushstack/eslint-patch": "1.12.0",
|
|
69
72
|
"@storybook/addon-a11y": "9.1.6",
|
|
70
73
|
"@storybook/addon-coverage": "2.0.0",
|
|
@@ -115,5 +118,5 @@
|
|
|
115
118
|
"vue-country-flag-next": "2.3.2",
|
|
116
119
|
"vue-tsc": "1.8.27"
|
|
117
120
|
},
|
|
118
|
-
"version": "0.3.
|
|
121
|
+
"version": "0.3.14"
|
|
119
122
|
}
|