adminium 1.0.1-beta.4 → 1.0.1-beta.5

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.
@@ -4,6 +4,9 @@
4
4
  /* ReUI Configs */
5
5
  @import "./config.reui.css";
6
6
 
7
+ /* Include library sources for Tailwind v4 class generation. */
8
+ @source "../**/*.{js,jsx,ts,tsx}";
9
+
7
10
  /** Global Styles **/
8
11
  @layer base {
9
12
  * {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminium",
3
- "version": "1.0.1-beta.4",
3
+ "version": "1.0.1-beta.5",
4
4
  "description": "Metronic UI Component Library - A beautiful, reusable React component library built with Tailwind CSS",
5
5
  "author": "linkedunion",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "build:next": "next build",
30
30
  "start": "next start",
31
31
  "lint": "eslint",
32
- "build": "tsup && mkdir -p dist/styles && cp src/styles/*.css dist/styles/",
32
+ "build": "tsup && mkdirp dist/styles && npx postcss src/styles/global.css -o dist/styles/adminium.css && cpy --flat src/styles/global.css src/styles/config.reui.css dist/styles",
33
33
  "dev:lib": "tsup --watch",
34
34
  "clean": "rm -rf dist",
35
35
  "prepublishOnly": "npm run build",
@@ -100,7 +100,11 @@
100
100
  "eslint-plugin-storybook": "^10.1.10",
101
101
  "husky": "^9.1.7",
102
102
  "lint-staged": "^16.2.7",
103
+ "mkdirp": "^3.0.1",
103
104
  "playwright": "^1.57.0",
105
+ "cpy-cli": "^5.0.0",
106
+ "postcss": "^8.5.6",
107
+ "postcss-cli": "^11.0.0",
104
108
  "prettier": "^3.7.4",
105
109
  "prettier-plugin-tailwindcss": "^0.7.2",
106
110
  "storybook": "^10.1.10",