@fakhrirafiki/theme-engine 0.1.0 → 0.1.2

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/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  "use strict";
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/dist/index.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  // src/providers/UnifiedThemeProvider.tsx
2
4
  import { createContext, useContext, useEffect, useState, useCallback, useMemo } from "react";
3
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fakhrirafiki/theme-engine",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Elegant theming system with smooth transitions, custom presets, and complete shadcn/ui support for modern React applications",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  "README.md"
24
24
  ],
25
25
  "scripts": {
26
- "build": "tsup src/index.ts --format esm,cjs --dts --clean",
26
+ "build": "tsup --config tsup.config.ts",
27
27
  "build:css": "cp -r src/styles dist/",
28
28
  "build:full": "npm run build && npm run build:css",
29
29
  "type-check": "tsc --noEmit",