sxy-test-runner 1.0.8 → 1.0.9

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/package.json +1 -1
  2. package/readme.md +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sxy-test-runner",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/readme.md CHANGED
@@ -24,19 +24,19 @@ describe('The add() function', ({it}) => {
24
24
  ### 1. Install
25
25
 
26
26
  ```
27
- npm i sxy-test-runner
27
+ npm i -D sxy-test-runner
28
28
  ```
29
29
 
30
- or
30
+ *or*
31
31
 
32
32
  ```
33
- yarn add sxy-test-runner
33
+ yarn add -D sxy-test-runner
34
34
  ```
35
35
 
36
- or
36
+ *or*
37
37
 
38
38
  ```
39
- pnpm add sxy-test-runner
39
+ pnpm add -D sxy-test-runner
40
40
  ```
41
41
 
42
42
  ---