@unimelb/pattern-lib-vue 17.4.0 → 17.6.0-alpha.1
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/.out/vue.js +7959 -6195
- package/README.md +3 -1
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -40,7 +40,9 @@ yarn dev
|
|
|
40
40
|
|
|
41
41
|
- [How to use the library](docs/how-to-use.md) - how this library externally
|
|
42
42
|
- [Documenting stories](docs/docs.md) - how to document the component in Storybook
|
|
43
|
-
-
|
|
43
|
+
- Static assets
|
|
44
|
+
- [Icons](docs/icons.md) - how to add new icons, and how to use icons in CSS and Vue components
|
|
45
|
+
- [Images](docs/images.md) - how to use logo and other image assets
|
|
44
46
|
- [Contributing](docs/contributing.md) - how to get involved and contribute code
|
|
45
47
|
- [Testing](docs/testing.md) - how to test your changes to the design system
|
|
46
48
|
- [Deployment](docs/deployment.md) - for developers, how to deploy new versions of the design system
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unimelb/pattern-lib-vue",
|
|
3
3
|
"description": "A complete design system for the University of Melbourne.",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.6.0-alpha.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/unimelb/pattern-lib.git"
|
|
8
8
|
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
9
12
|
"author": "The University of Melbourne",
|
|
10
13
|
"license": "UNLICENSED",
|
|
11
14
|
"engines": {
|
|
@@ -25,16 +28,22 @@
|
|
|
25
28
|
"prebuild": "rimraf .out/docs",
|
|
26
29
|
"prebuild:lib": "rimraf .out/lib",
|
|
27
30
|
"build": "storybook build -o .out/docs",
|
|
28
|
-
"build:lib": "
|
|
31
|
+
"build:lib": "run-s build:lib:standard build:webc build:uom",
|
|
29
32
|
"build:lib:standard": "vite build --config targets/lib/vite.config.js",
|
|
30
33
|
"build:lib:minify": "vite build --config targets/lib/vite.config.js",
|
|
34
|
+
"build:uom": "vite build --config targets/uom/vite.config.js",
|
|
35
|
+
"build:webc": "vite build --config targets/webc/vite.config.js",
|
|
31
36
|
"build:vue": "vite build --config targets/vue/vite.config.js",
|
|
32
37
|
"prebuild:test": "rimraf _site-docker",
|
|
33
38
|
"build:test": "cross-env MOCK=true npm-run-all storybook-build:docker",
|
|
34
39
|
"dev": "storybook dev -p 7002",
|
|
35
40
|
"dev:public": "storybook dev -p 7002 -h 0.0.0.0",
|
|
36
41
|
"start": "vite preview --port 7003 --outDir .out/docs",
|
|
37
|
-
"
|
|
42
|
+
"prestart:lib": "npm run build:lib",
|
|
43
|
+
"start:lib": "vite preview --port 7003 --open --config targets/lib/vite.config.js",
|
|
44
|
+
"prestart:uom": "npm run build:uom",
|
|
45
|
+
"start:uom": "vite preview --port 7003 --open --config targets/uom/vite.config.js",
|
|
46
|
+
"start:webc": "npm run start:lib",
|
|
38
47
|
"start:test": "http-server ./_site-docker -c-1 --port 7003",
|
|
39
48
|
"format": "prettier --write .",
|
|
40
49
|
"lint": "run-s lint:js lint:css",
|
|
@@ -59,6 +68,7 @@
|
|
|
59
68
|
"storybook-build:docker": "storybook build -o _site-docker"
|
|
60
69
|
},
|
|
61
70
|
"dependencies": {
|
|
71
|
+
"@floating-ui/vue": "^1.1.11",
|
|
62
72
|
"@fontsource-variable/fraunces": "5.2.9",
|
|
63
73
|
"@fontsource/source-sans-3": "5.2.9",
|
|
64
74
|
"@splidejs/vue-splide": "0.6.12",
|