@luminescent/ui 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -12,7 +12,7 @@ The theme property is optional if you don't want to use blobs in the Card compon
12
12
  ```javascript
13
13
  /** @type {import('tailwindcss').Config} */
14
14
 
15
- import tailwindConfig from '@luminescent/ui/tailwind-config';
15
+ import tailwindConfig from '@luminescent/ui/config';
16
16
 
17
17
  export default {
18
18
  content: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminescent/ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Luminescent UI library",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",
@@ -10,11 +10,15 @@
10
10
  "import": "./lib/index.qwik.mjs",
11
11
  "require": "./lib/index.qwik.cjs",
12
12
  "types": "./lib-types/index.d.ts"
13
+ },
14
+ "./config": {
15
+ "import": "./src/tailwind.config.ts"
13
16
  }
14
17
  },
15
18
  "files": [
16
19
  "lib",
17
- "lib-types"
20
+ "lib-types",
21
+ "src/tailwind.config.ts"
18
22
  ],
19
23
  "engines": {
20
24
  "node": ">=15.0.0"