@segmentify/ui 0.0.11 → 0.0.13

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": "@segmentify/ui",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -73,6 +73,7 @@
73
73
  "@storybook/addon-themes": "^10.1.10",
74
74
  "@storybook/addon-vitest": "^10.1.10",
75
75
  "@storybook/react-vite": "^10.1.10",
76
+ "@tailwindcss/cli": "^4.1.18",
76
77
  "@tailwindcss/vite": "^4.1.18",
77
78
  "@types/node": "^25.0.3",
78
79
  "@types/react": "^19.2.7",
@@ -117,7 +118,8 @@
117
118
  },
118
119
  "scripts": {
119
120
  "dev": "vite",
120
- "build": "vite build && tsc -p tsconfig.build.json && node scripts/fix-type-aliases.mjs",
121
+ "build:css": "tailwindcss -i src/index.css -o dist/ui.css",
122
+ "build": "pnpm run build:css && vite build --emptyOutDir=false && tsc -p tsconfig.build.json && node scripts/fix-type-aliases.mjs",
121
123
  "postbuild": "node ./scripts/verify-dist.mjs",
122
124
  "lint": "eslint .",
123
125
  "lint:fix": "npm run lint -- --fix",