@angli/unit-test-tool 0.1.0 → 0.1.1

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 +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,6 +21,13 @@
21
21
  npm install -g @angli/unit-test-tool
22
22
  ```
23
23
 
24
+ 如果本机之前装过旧版本,先卸载再安装最新版:
25
+
26
+ ```bash
27
+ npm uninstall -g @angli/unit-test-tool
28
+ npm install -g @angli/unit-test-tool
29
+ ```
30
+
24
31
  安装后可直接使用:
25
32
 
26
33
  ```bash
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@angli/unit-test-tool",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
- "testbot": "./dist/cli/index.js"
6
+ "testbot": "./dist/src/cli/index.js"
7
7
  },
8
8
  "scripts": {
9
9
  "build": "tsc -p tsconfig.json",