@mdigital_ui/ui 0.2.0 → 0.2.1

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": "@mdigital_ui/ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Modern React component library built with Tailwind CSS v4",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -77,7 +77,7 @@
77
77
  },
78
78
  "scripts": {
79
79
  "build": "tsup && npm run build:css",
80
- "build:css": "mkdir -p dist/styles/themes && cp src/styles/global.css dist/styles/global.css && cp src/styles/base.css dist/styles/base.css && cp src/styles/themes/*.css dist/styles/themes/",
80
+ "build:css": "mkdir -p dist/styles/themes && postcss src/styles/global.css -o dist/styles/global.css && postcss src/styles/base.css -o dist/styles/base.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",
81
81
  "dev": "tsup --watch",
82
82
  "typecheck": "tsc --noEmit",
83
83
  "storybook": "storybook dev -p 6006",
@@ -115,6 +115,8 @@
115
115
  "@types/react": "^19.0.0",
116
116
  "@types/react-datepicker": "^6.2.0",
117
117
  "@types/react-dom": "^19.0.0",
118
+ "postcss": "^8.4.0",
119
+ "postcss-cli": "^11.0.0",
118
120
  "react": "^19.0.0",
119
121
  "react-dom": "^19.0.0",
120
122
  "storybook": "^8.0.0",