@well-insight/ui 0.1.3 → 0.1.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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +2 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @well-insight/ui
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### 变更
6
+
7
+ - Simplify package.json exports by removing development paths for styles and index files
8
+
3
9
  ## 0.1.3
4
10
 
5
11
  ### 新功能
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@well-insight/ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Vue 3 component library for Well Insight.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -28,13 +28,9 @@
28
28
  "exports": {
29
29
  ".": {
30
30
  "types": "./dist/index.d.ts",
31
- "development": "./src/index.ts",
32
31
  "import": "./dist/index.js"
33
32
  },
34
- "./styles.css": {
35
- "development": "./src/styles/index.css",
36
- "default": "./dist/styles.css"
37
- },
33
+ "./styles.css": "./dist/styles.css",
38
34
  "./docs": "./src/docs/index.ts"
39
35
  },
40
36
  "types": "./dist/index.d.ts",