earthnut 1.1.2-alpha.2 → 1.2.1-alpha.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +17 -11
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # EarthNut React
2
2
 
3
+ **v1** 原则上 **不再添加** 新的内容
4
+
3
5
  ## 安装
4
6
 
5
7
  ```sh
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "type": "module",
10
10
  "name": "earthnut",
11
- "version": "1.1.2-alpha.2",
11
+ "version": "1.2.1-alpha.0",
12
12
  "description": "一个 earthnut 的 react ui",
13
13
  "overrides": {
14
14
  "css-loader": "6.11.0"
@@ -45,32 +45,38 @@
45
45
  },
46
46
  "./common.scss": {
47
47
  "types": "./styles/common.scss.d.ts",
48
- "import": "./styles/common.scss",
48
+ "sass": "./styles/common.scss",
49
+ "style": "./styles/common.scss",
49
50
  "default": "./styles/common.scss"
50
51
  },
51
- "./common.css": {
52
- "types": "./styles/common.css.d.ts",
53
- "import": "./styles/common.css",
54
- "default": "./styles/common.css"
55
- },
56
52
  "./reset.scss": {
57
53
  "types": "./styles/reset.scss.d.ts",
58
- "import": "./styles/reset.scss",
54
+ "sass": "./styles/reset.scss",
55
+ "style": "./styles/reset.scss",
59
56
  "default": "./styles/reset.scss"
60
57
  },
58
+ "./common.css": {
59
+ "types": "./styles/common.css.d.ts",
60
+ "style": "./styles/common.css",
61
+ "css": "./styles/common.css",
62
+ "default": "./styles/common.css"
63
+ },
61
64
  "./reset.css": {
62
65
  "types": "./styles/reset.css.d.ts",
63
- "import": "./styles/reset.css",
66
+ "style": "./styles/reset.css",
67
+ "css": "./styles/reset.css",
64
68
  "default": "./styles/reset.css"
65
69
  },
66
70
  "./scss": {
67
71
  "types": "./styles/common.scss.d.ts",
68
- "import": "./styles/common.scss",
72
+ "style": "./styles/common.scss",
73
+ "scss": "./styles/common.scss",
69
74
  "default": "./styles/common.scss"
70
75
  },
71
76
  "./css": {
72
77
  "types": "./styles/common.css.d.ts",
73
- "import": "./styles/common.css",
78
+ "style": "./styles/common.css",
79
+ "css": "./styles/common.css",
74
80
  "default": "./styles/common.css"
75
81
  }
76
82
  },