askui 0.1.2 → 0.1.5
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.
|
@@ -5,11 +5,11 @@ The lib is helps to control the operating system with
|
|
|
5
5
|
commands.
|
|
6
6
|
Using Jest as test framework to execute all tests.
|
|
7
7
|
|
|
8
|
-
## Installation of Jest
|
|
8
|
+
## Installation of Jest and Typescript
|
|
9
9
|
|
|
10
10
|
Use following command to set up Jest:
|
|
11
11
|
```shell
|
|
12
|
-
npm i -D jest @types/jest ts-jest
|
|
12
|
+
npm i -D jest @types/jest ts-jest typescript
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## How to execute the example test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "askui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"main": "./dist/cjs/main.js",
|
|
5
5
|
"module": "./dist/esm/main.js",
|
|
6
6
|
"bin": "bin/askui",
|
|
@@ -40,12 +40,6 @@
|
|
|
40
40
|
"@types/url-join": "~4.0.1",
|
|
41
41
|
"@types/webrtc": "~0.0.30",
|
|
42
42
|
"@types/ws": "~7.4.4",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "~5.10.0",
|
|
44
|
-
"@typescript-eslint/parser": "~5.10.0",
|
|
45
|
-
"eslint": "~8.7.0",
|
|
46
|
-
"eslint-config-airbnb-base": "~15.0.0",
|
|
47
|
-
"eslint-config-airbnb-typescript": "~16.1.0",
|
|
48
|
-
"eslint-plugin-import": "~2.25.4",
|
|
49
43
|
"jest": "~27.4.7",
|
|
50
44
|
"shx": "~0.3.4",
|
|
51
45
|
"ts-jest": "~27.1.3",
|