@el-plus/ui 0.0.2 → 0.0.4

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/index.ts +1 -1
  3. package/package.json +2 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # el-plus
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: ts类型找到同名component问题
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - ci: package.json的主入口修改
14
+
3
15
  ## 0.0.1
4
16
 
5
17
  ### Patch Changes
package/index.ts CHANGED
@@ -12,6 +12,6 @@ const plugin: Plugin & { version: string } = {
12
12
  version,
13
13
  }
14
14
  export default plugin
15
- export * from '@el-plus/components/'
15
+ export * from '@el-plus/components/index'
16
16
  export * from '@el-plus/hooks'
17
17
  export * from '@el-plus/directives'
package/package.json CHANGED
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "name": "@el-plus/ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "pro base on element-plus",
5
- "main": "lib/index.js",
6
- "module": "es/index.mjs",
7
- "types": "es/index.d.ts",
5
+ "module": "index.ts",
8
6
  "keywords": [
9
7
  "element-plus",
10
8
  "vue3"