@mieweb/ui 0.6.1-dev.136 → 0.6.1-dev.137

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 (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mieweb/ui",
3
- "version": "0.6.1-dev.136",
3
+ "version": "0.6.1-dev.137",
4
4
  "description": "A themeable, accessible React component library built with Tailwind CSS",
5
5
  "author": "Medical Informatics Engineering, Inc.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -155,7 +155,7 @@
155
155
  "dev": "tsup --watch",
156
156
  "prebuild": "npm run build:esheet",
157
157
  "build": "node --max-old-space-size=8192 ./node_modules/tsup/dist/cli-default.js && npm run build:css && npm run copy:brand-css && npm run copy:style-css && npm run copy:markdown-css",
158
- "build:esheet": "if [ ! -f packages/esheet/packages/core/dist/index.d.ts ]; then cd packages/esheet && npm ci && npx nx run-many --target=build --projects=@esheet/core,@esheet/fields,@esheet/adapters,@esheet/builder,@esheet/renderer --parallel; fi",
158
+ "build:esheet": "if [ ! -f packages/esheet/packages/core/dist/index.d.ts ] || [ ! -f packages/esheet/packages/renderer/src/index.output.css ]; then cd packages/esheet && npm ci && npx nx run-many --target=build --projects=@esheet/core,@esheet/fields,@esheet/adapters,@esheet/builder,@esheet/renderer --parallel; fi",
159
159
  "build:css": "npx @tailwindcss/cli -i ./src/styles/base.css -o ./dist/styles.css --minify",
160
160
  "copy:brand-css": "cp src/brands/*.css dist/brands/ 2>/dev/null || true",
161
161
  "copy:style-css": "mkdir -p dist/styles && cp src/styles/init.css dist/styles/ 2>/dev/null || true",
@@ -167,6 +167,7 @@
167
167
  "format:fix": "prettier --write \"src/**/*.{ts,tsx,css}\"",
168
168
  "test": "vitest run",
169
169
  "test:watch": "vitest",
170
+ "prestorybook": "npm run build:esheet",
170
171
  "storybook": "storybook dev -p 6006",
171
172
  "build-storybook": "npm run build:esheet && storybook build",
172
173
  "test:coverage": "vitest run --coverage",