@dao-style/core 1.19.1-beta.3 → 1.20.0
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/index.js +7 -0
- package/package.json +9 -4
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dao-style/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"commit": "git-cz",
|
|
6
6
|
"dev": "npm run dev:docs",
|
|
@@ -112,9 +112,10 @@
|
|
|
112
112
|
"files": [
|
|
113
113
|
"dist",
|
|
114
114
|
"volar.d.ts",
|
|
115
|
-
"scripts/transform-variable.mjs"
|
|
115
|
+
"scripts/transform-variable.mjs",
|
|
116
|
+
"index.js"
|
|
116
117
|
],
|
|
117
|
-
"main": "./
|
|
118
|
+
"main": "./index.js",
|
|
118
119
|
"module": "./dist/dao-style.mjs",
|
|
119
120
|
"types": "./dist/index.d.ts",
|
|
120
121
|
"workspaces": [
|
|
@@ -122,9 +123,13 @@
|
|
|
122
123
|
],
|
|
123
124
|
"exports": {
|
|
124
125
|
".": {
|
|
126
|
+
"types": "./dist/index.d.ts",
|
|
125
127
|
"import": "./dist/dao-style.mjs",
|
|
126
|
-
"require": "./
|
|
128
|
+
"require": "./index.js"
|
|
127
129
|
},
|
|
130
|
+
"./volar.d.ts": "./volar.d.ts",
|
|
131
|
+
"./dist/*": "./dist/*",
|
|
132
|
+
"./package.json": "./package.json",
|
|
128
133
|
"./*": "./*"
|
|
129
134
|
}
|
|
130
135
|
}
|