@mdigital_ui/ui 0.3.2 → 0.3.4

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 +10 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdigital_ui/ui",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Modern React component library built with Tailwind CSS v4",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -508,6 +508,14 @@
508
508
  ]
509
509
  }
510
510
  },
511
+ "scripts": {
512
+ "build": "tsup && tsc -p tsconfig.dts.json && npm run build:css",
513
+ "build:css": "mkdir -p dist/styles/themes/presets && postcss src/styles/global.css -o dist/styles/global.css && postcss src/styles/themes/light.css -o dist/styles/themes/light.css && postcss src/styles/themes/dark.css -o dist/styles/themes/dark.css && postcss src/styles/themes/presets/corporate.css -o dist/styles/themes/presets/corporate.css && postcss src/styles/themes/presets/vibrant.css -o dist/styles/themes/presets/vibrant.css && postcss src/styles/themes/presets/minimal.css -o dist/styles/themes/presets/minimal.css",
514
+ "dev": "tsup --watch",
515
+ "typecheck": "tsc --noEmit",
516
+ "storybook": "storybook dev -p 6006",
517
+ "build-storybook": "storybook build"
518
+ },
511
519
  "engines": {
512
520
  "node": ">=18.0.0"
513
521
  },
@@ -581,13 +589,5 @@
581
589
  "license": "MIT",
582
590
  "publishConfig": {
583
591
  "access": "public"
584
- },
585
- "scripts": {
586
- "build": "tsup && tsc -p tsconfig.dts.json && npm run build:css",
587
- "build:css": "mkdir -p dist/styles/themes/presets && postcss src/styles/global.css -o dist/styles/global.css && postcss src/styles/themes/light.css -o dist/styles/themes/light.css && postcss src/styles/themes/dark.css -o dist/styles/themes/dark.css && postcss src/styles/themes/presets/corporate.css -o dist/styles/themes/presets/corporate.css && postcss src/styles/themes/presets/vibrant.css -o dist/styles/themes/presets/vibrant.css && postcss src/styles/themes/presets/minimal.css -o dist/styles/themes/presets/minimal.css",
588
- "dev": "tsup --watch",
589
- "typecheck": "tsc --noEmit",
590
- "storybook": "storybook dev -p 6006",
591
- "build-storybook": "storybook build"
592
592
  }
593
- }
593
+ }