@peerbots/core 0.2.0 → 0.2.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.
- package/CHANGELOG.md +6 -0
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @peerbots/core
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 079e008: Fix CSS export conditions in package.json for better compatibility with Tailwind v4 and modern bundlers. This resolve the error 'is not exported under the condition "style"'.
|
|
8
|
+
|
|
3
9
|
## 0.2.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -3,16 +3,21 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.2.
|
|
6
|
+
"version": "0.2.1",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
|
+
"style": "./dist/index.css",
|
|
8
9
|
"types": "dist/index.d.ts",
|
|
9
10
|
"exports": {
|
|
10
11
|
".": {
|
|
11
12
|
"types": "./dist/index.d.ts",
|
|
13
|
+
"style": "./dist/index.css",
|
|
12
14
|
"import": "./dist/index.mjs",
|
|
13
15
|
"require": "./dist/index.js"
|
|
14
16
|
},
|
|
15
|
-
"./theme.css":
|
|
17
|
+
"./theme.css": {
|
|
18
|
+
"style": "./dist/index.css",
|
|
19
|
+
"default": "./dist/index.css"
|
|
20
|
+
}
|
|
16
21
|
},
|
|
17
22
|
"license": "GPL-3.0-only",
|
|
18
23
|
"author": "Peerbots",
|