@hashrytech/quick-components-kit 0.3.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @hashrytech/quick-components-kit
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: plugin update for tailwind
8
+
9
+ ## 0.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - fix: adding plugin to link css to components
14
+
3
15
  ## 0.3.0
4
16
 
5
17
  ### Minor Changes
@@ -0,0 +1,2 @@
1
+ declare const quiickComponentsKitPlugin: any;
2
+ export default quiickComponentsKitPlugin;
@@ -0,0 +1,10 @@
1
+ import plugin from 'tailwindcss/plugin';
2
+ import path from 'path';
3
+ const quiickComponentsKitPlugin = plugin(function () {
4
+ // Optional: Add custom utilities
5
+ }, {
6
+ content: [
7
+ path.join(__dirname, '**/*.{svelte,js,ts}')
8
+ ]
9
+ });
10
+ export default quiickComponentsKitPlugin;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/hashrytech/quick-components-kit.git"
7
7
  },
8
- "version": "0.3.0",
8
+ "version": "0.3.2",
9
9
  "license": "MIT",
10
10
  "author": "Hashry Tech",
11
11
  "files": [
@@ -29,7 +29,8 @@
29
29
  ".": {
30
30
  "types": "./dist/index.d.ts",
31
31
  "svelte": "./dist/index.js"
32
- }
32
+ },
33
+ "./tailwind": "./dist/quick-components-kit-plugin.js"
33
34
  },
34
35
  "peerDependencies": {
35
36
  "svelte": "^5.0.0"