@unimelb/pattern-lib-vue 14.0.0-beta.0 → 14.0.0-beta.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.
Files changed (2) hide show
  1. package/.out/vue.js +2 -2
  2. package/package.json +13 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unimelb/pattern-lib-vue",
3
3
  "description": "A complete design system for the University of Melbourne.",
4
- "version": "14.0.0-beta.0",
4
+ "version": "14.0.0-beta.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/unimelb/pattern-lib.git"
@@ -17,8 +17,8 @@
17
17
  ".out/vue.js"
18
18
  ],
19
19
  "scripts": {
20
- "prebuild": "rm -Rf .out/docs",
21
- "prebuild:lib": "rm -Rf .out/lib",
20
+ "prebuild": "rimraf .out/docs",
21
+ "prebuild:lib": "rimraf .out/lib",
22
22
  "build": "build-storybook -c .storybook -o .out/docs",
23
23
  "build:lib": "run-p build:lib:standard build:lib:minify",
24
24
  "build:lib:standard": "cross-env NODE_ENV=production webpack --config targets/lib/webpack.config.js",
@@ -28,6 +28,8 @@
28
28
  "dev": "start-storybook -p 7002 -c .storybook",
29
29
  "dev:public": "start-storybook -p 7002 -h 0.0.0.0 -c .storybook",
30
30
  "start:lib": "webpack-dev-server --port 7003 --config targets/lib/webpack.config.js",
31
+ "docker": "docker compose --profile dev up --abort-on-container-exit --remove-orphans",
32
+ "docker:build": "cross-env MODE=build docker compose run --rm storybook",
31
33
  "lint": "run-s lint:js lint:css",
32
34
  "lint:css": "stylelint \".storybook/**/*.css\" \"components/**/*.css\" \"targets/**/*.css\" --fix",
33
35
  "lint:js": "eslint \"*.js\" \".storybook/**/*.{js,vue}\" \"components/**/*.{js,vue}\" \"targets/**/*.js\" --fix",
@@ -41,9 +43,10 @@
41
43
  "serve:test": "serve .out/docs"
42
44
  },
43
45
  "dependencies": {
46
+ "@fontsource-variable/fraunces": "^5.0.3",
47
+ "@fontsource/source-sans-pro": "^5.0.2",
44
48
  "babel-polyfill": "^6.26.0",
45
49
  "change-case": "^3.1.0",
46
- "es6-promise": "^4.2.8",
47
50
  "gumshoejs": "^5.1.2",
48
51
  "jump.js": "^1.0.2",
49
52
  "lodash.clonedeep": "^4.5.0",
@@ -99,6 +102,7 @@
99
102
  "jest-image-snapshot": "^2.12.0",
100
103
  "jest-puppeteer": "^4.4.0",
101
104
  "jest-serializer-vue": "^2.0.2",
105
+ "jest-transform-stub": "^2.0.0",
102
106
  "lint-staged": "^10.0.8",
103
107
  "npm-run-all": "^4.1.5",
104
108
  "plop": "^2.4.0",
@@ -153,14 +157,17 @@
153
157
  "^\\.storybook/(.*)$": "<rootDir>/.storybook/$1",
154
158
  "^icons/(.*)$": "<rootDir>/components/icons/$1",
155
159
  "^components(.*)$": "<rootDir>/components$1",
156
- "^vue$": "vue/dist/vue.js"
160
+ "^vue$": "vue/dist/vue.js",
161
+ "^utils/(.*)$": "<rootDir>/utils/$1",
162
+ "^static/(.*)$": "<rootDir>/static/$1"
157
163
  },
158
164
  "snapshotSerializers": [
159
165
  "<rootDir>/node_modules/jest-serializer-vue"
160
166
  ],
161
167
  "transform": {
162
168
  ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
163
- "^.+\\.js$": "<rootDir>/node_modules/babel-jest"
169
+ "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
170
+ ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
164
171
  },
165
172
  "transformIgnorePatterns": [],
166
173
  "testPathIgnorePatterns": [