@douyinfe/semi-illustrations 2.0.8 → 2.1.0-alpha.2

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 +0 -22
  2. package/package.json +12 -4
package/README.md CHANGED
@@ -1,25 +1,3 @@
1
- <div style="text-align:center">
2
- <h3>Semi Illustrations</h3>
3
- </div>
4
-
5
- <table style="display: inline-table; text-align: center;">
6
- <tr>
7
- <td><img src="./src/svgs/construction.svg" alt="construction" /></td>
8
- <td><img src="./src/svgs/failure.svg" alt="failure" /></td>
9
- <td><img src="./src/svgs/idle.svg" alt="idle" /></td>
10
- <td><img src="./src/svgs/noAccess.svg" alt="noAccess" /></td>
11
-
12
- </tr>
13
- <tr>
14
- <td><img src="./src/svgs/noContent.svg" alt="noContent" /></td>
15
- <td><img src="./src/svgs/noResult.svg" alt="noResult" /></td>
16
- <td><img src="./src/svgs/notFound.svg" alt="notFound" /></td>
17
- <td><img src="./src/svgs/success.svg" alt="success" /></td>
18
- </tr>
19
- </table>
20
-
21
- </div>
22
-
23
1
  ##  📣 Introduce
24
2
 
25
3
  Semantic Illustrations design by Semi Team
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@douyinfe/semi-illustrations",
3
- "version": "2.0.8",
3
+ "version": "2.1.0-alpha.2",
4
4
  "description": "semi illustrations",
5
5
  "keywords": [
6
6
  "semi",
@@ -34,17 +34,25 @@
34
34
  "@babel/plugin-transform-runtime": "^7.15.8",
35
35
  "@babel/preset-env": "^7.15.8",
36
36
  "@babel/preset-react": "^7.14.5",
37
+ "babel-loader": "^8.2.2",
38
+ "case-sensitive-paths-webpack-plugin": "2.4.0",
37
39
  "del": "^6.0.0",
38
40
  "gulp": "^4.0.2",
39
41
  "gulp-babel": "^8.0.0",
40
42
  "gulp-replace": "^1.1.3",
41
43
  "gulp-typescript": "^6.0.0-alpha.1",
42
- "merge2": "^1.4.1"
44
+ "merge2": "^1.4.1",
45
+ "rimraf": "^3.0.2",
46
+ "terser-webpack-plugin": "^4.2.3",
47
+ "ts-loader": "^5.4.5",
48
+ "webpack": "^4.46.0"
43
49
  },
44
50
  "scripts": {
51
+ "clean": "rimraf dist lib",
45
52
  "build:icon": "node scripts/build-illustration",
46
53
  "build:lib": "node ./scripts/compileLib.js",
47
- "prepublishOnly": "npm run build:lib"
54
+ "build:js": "node scripts/compileDist.js",
55
+ "prepublishOnly": "npm run clean && npm run build:lib && npm run build:js"
48
56
  },
49
- "gitHead": "0a2a5df053d415ee634ae3c5b8aa24915aa2cf9b"
57
+ "gitHead": "50381484f8df8aaa00285cf0a2ee01edf0083115"
50
58
  }