@choosemycompany/ui 0.31.1 → 0.31.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@choosemycompany/ui",
3
- "version": "0.31.1",
3
+ "version": "0.31.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
@@ -67,12 +67,12 @@
67
67
  "vue-tsc": "^3.1.2"
68
68
  },
69
69
  "scripts": {
70
- "lib:build": "vue-tsc -b ./tsconfig.lib.json && vite build",
71
- "lib:build:dry-run": "vue-tsc -b ./tsconfig.lib.json --noEmit && vite build",
72
- "storybook:dev": "STORYBOOK_ENV=dev storybook dev -p 6006",
73
- "storybook:build": "storybook build --output-dir=./storybook-static",
74
- "tokens:build": "node ./bin/build_tokens.mjs",
75
- "fonts:build": "node ./bin/build_fonts.mjs",
70
+ "dev": "STORYBOOK_ENV=dev storybook dev -p 6006",
71
+ "build": "run-s build:tokens build:fonts build:lib",
72
+ "build:lib": "vue-tsc -b ./tsconfig.lib.json && vite build",
73
+ "build:storybook": "storybook build --output-dir=./storybook-static",
74
+ "build:tokens": "node ./bin/build_tokens.mjs",
75
+ "build:fonts": "node ./bin/build_fonts.mjs",
76
76
  "lint": "run-p lint:prettier lint:eslint",
77
77
  "lint:fix": "run-s lint:prettier:fix lint:eslint:fix",
78
78
  "lint:eslint": "eslint --max-warnings 0 'src/components/**/*.{js,ts,vue}'",
@@ -82,6 +82,7 @@
82
82
  "test": "run-p test:unit test:storybook test:browser",
83
83
  "test:storybook": "vitest run --reporter=verbose --project=storybook",
84
84
  "test:unit": "vitest run --reporter=verbose --project=unit",
85
- "test:browser": "vitest run --reporter=verbose --project=browser"
85
+ "test:browser": "vitest run --reporter=verbose --project=browser",
86
+ "typecheck": "vue-tsc -b ./tsconfig.lib.json"
86
87
  }
87
88
  }