@unimelb/pattern-lib-vue 16.0.0-alpha.28 → 16.0.0-alpha.29

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 +1 -1
  2. package/package.json +6 -5
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": "16.0.0-alpha.28",
4
+ "version": "16.0.0-alpha.29",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/unimelb/pattern-lib.git"
@@ -12,6 +12,7 @@
12
12
  "node": ">=22.3.0",
13
13
  "yarn": "*"
14
14
  },
15
+ "type": "module",
15
16
  "main": ".out/vue.js",
16
17
  "files": [
17
18
  ".out/vue.js"
@@ -21,14 +22,14 @@
21
22
  "prebuild:lib": "rimraf .out/lib",
22
23
  "build": "storybook build -o .out/docs",
23
24
  "build:lib": "run-p build:lib:standard build:lib:minify",
24
- "build:lib:standard": "cross-env NODE_ENV=production webpack --config targets/lib/webpack.config.js",
25
- "build:lib:minify": "cross-env NODE_ENV=production MINIFY_CSS=true webpack --config targets/lib/webpack.minify.config.js",
26
- "build:vue": "cross-env NODE_ENV=production webpack --config targets/vue/webpack.config.js",
25
+ "build:lib:standard": "cross-env NODE_ENV=production webpack --config targets/lib/webpack.config.cjs",
26
+ "build:lib:minify": "cross-env NODE_ENV=production MINIFY_CSS=true webpack --config targets/lib/webpack.minify.config.cjs",
27
+ "build:vue": "cross-env NODE_ENV=production webpack --config targets/vue/webpack.config.cjs",
27
28
  "prebuild:test": "rimraf _site-docker",
28
29
  "build:test": "cross-env MOCK=true npm-run-all \"build -o _site-docker\"",
29
30
  "dev": "storybook dev -p 7002",
30
31
  "dev:public": "storybook dev -p 7002 -h 0.0.0.0",
31
- "start:lib": "webpack-dev-server --port 7003 --config targets/lib/webpack.config.js",
32
+ "start:lib": "webpack-dev-server --port 7003 --config targets/lib/webpack.config.cjs",
32
33
  "docker:build": "cross-env MODE=build docker compose run --rm storybook",
33
34
  "lint": "run-s lint:js lint:css",
34
35
  "lint:css": "stylelint **/*.{css,vue} --fix",