xiangjsoncraft 2.0.2 → 2.0.3

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 +1 -1
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # XiangJsonCraft 2.0.0
1
+ # XiangJsonCraft 2.0.3
2
2
 
3
3
  **Write JSON, Get a Website.** | 零CSS、零JS、纯JSON驱动的轻量前端框架
4
4
 
package/package.json CHANGED
@@ -1,17 +1,19 @@
1
1
  {
2
2
  "name": "xiangjsoncraft",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "XiangJsonCraft 2.0 项目 - Write JSON, Get a Website",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "npx live-server . --port=3000",
8
- "test": "echo \"XiangJsonCraft 测试成功!\""
8
+ "test": "echo \"XiangJsonCraft 测试成功!\"",
9
+ "build": "rollup -c rollup.config.js"
9
10
  },
10
11
  "dependencies": {
11
12
  "xiangjsoncraft": "^2.0.2"
12
13
  },
13
14
  "devDependencies": {
14
- "live-server": "^1.2.2"
15
+ "live-server": "^1.2.2",
16
+ "rollup": "^4.57.1"
15
17
  },
16
18
  "license": "MIT"
17
- }
19
+ }