@lunit/oui 1.0.1-alpha.12 → 1.0.1-alpha.13
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/package.json +23 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunit/oui",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.13",
|
|
4
4
|
"validate-branch-name": {
|
|
5
5
|
"pattern": "^(main|develop)|(feature|fix|release|hotfix|qe)/.+$",
|
|
6
6
|
"errorMsg": "The branch name is not correct. Please check the pattern. (ex. feature/add-something)"
|
|
@@ -201,10 +201,30 @@
|
|
|
201
201
|
"types": "dist/types/index.d.ts",
|
|
202
202
|
"sideEffects": false,
|
|
203
203
|
"exports": {
|
|
204
|
+
".": {
|
|
205
|
+
"import": "./dist/index.js",
|
|
206
|
+
"module": "./dist/index.js",
|
|
207
|
+
"default": "./dist/index.js"
|
|
208
|
+
},
|
|
209
|
+
"./*": {
|
|
210
|
+
"import": "./dist/components/*/index.js",
|
|
211
|
+
"module": "./dist/components/*/index.js",
|
|
212
|
+
"default": "./dist/components/*/index.js"
|
|
213
|
+
},
|
|
204
214
|
"./icons": {
|
|
205
|
-
"
|
|
215
|
+
"import": "./dist/icons/index.js",
|
|
206
216
|
"module": "./dist/icons/index.js",
|
|
207
|
-
"default": "./dist/icons/index.js"
|
|
217
|
+
"default": "./dist/icons/index.js",
|
|
218
|
+
"types": "./dist/types/icons/index.d.ts"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"typesVersions": {
|
|
222
|
+
"*": {
|
|
223
|
+
"*": [
|
|
224
|
+
"dist/types/components/*/index.d.ts",
|
|
225
|
+
"dist/types/icons/*/index.d.ts",
|
|
226
|
+
"dist/types/index.d.ts"
|
|
227
|
+
]
|
|
208
228
|
}
|
|
209
229
|
},
|
|
210
230
|
"repository": {
|