@getgreenline/blaze-ui 1.0.6 → 1.0.7
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/README.md +1 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ Add Blaze UI's stylesheet to your Tailwind entry file (or another file that is
|
|
|
36
36
|
processed by Tailwind):
|
|
37
37
|
|
|
38
38
|
```css
|
|
39
|
-
@import "@getgreenline/blaze-ui/
|
|
39
|
+
@import "@getgreenline/blaze-ui/styles/blaze-ui.css";
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
The import can live alongside your existing Tailwind directives. When your
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getgreenline/blaze-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "tsc -p tsconfig.json --watch",
|
|
6
6
|
"build": "yarn run clean && yarn run compile",
|
|
@@ -41,6 +41,14 @@
|
|
|
41
41
|
},
|
|
42
42
|
"main": "build/index",
|
|
43
43
|
"types": "build/index",
|
|
44
|
+
"exports": {
|
|
45
|
+
".": {
|
|
46
|
+
"types": "./build/index.d.ts",
|
|
47
|
+
"require": "./build/index.js",
|
|
48
|
+
"default": "./build/index.mjs"
|
|
49
|
+
},
|
|
50
|
+
"./styles/blaze-ui.css": "./src/styles/blaze-ui.css"
|
|
51
|
+
},
|
|
44
52
|
"files": [
|
|
45
53
|
"build/**",
|
|
46
54
|
"src/styles/**",
|