@uuv/assistant 1.4.3 → 1.5.0
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.
- package/dist/launcher/conf.json +3 -2
- package/dist/launcher/index.d.ts +1 -1
- package/dist/launcher/uuv-assistant-launcher.d.ts +15 -0
- package/dist/launcher/uuv-assistant-launcher.js +15 -0
- package/dist/launcher/uuv-assistant.d.ts +15 -1
- package/dist/launcher/uuv-assistant.js +17 -32
- package/dist/uuv-assistant-resources.bundle.js +25 -0
- package/package.json +20 -13
- package/build/static/css/main.8c76db0a.css +0 -1
- package/build/static/js/main.cb348734.js +0 -2
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/assistant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
5
|
-
"description": "UUV
|
|
5
|
+
"description": "UUV Helper used to improve the life of testers and developers by generating cucumber phrases from the GUI.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
+
"type": "commonjs",
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
9
10
|
"url": "https://github.com/e2e-test-quest/uuv"
|
|
@@ -33,20 +34,28 @@
|
|
|
33
34
|
},
|
|
34
35
|
"scripts": {
|
|
35
36
|
"react:start": "react-scripts start",
|
|
36
|
-
"react
|
|
37
|
+
"build:react": "react-scripts build",
|
|
37
38
|
"react:test": "react-scripts test",
|
|
38
39
|
"react:eject": "react-scripts eject",
|
|
39
40
|
"launch": "ts-node launcher/uuv-assistant-launcher.ts",
|
|
40
41
|
"launch:custom": "ts-node tests/uuv-assistant-custom-launcher.ts",
|
|
41
|
-
"conf
|
|
42
|
+
"build:conf": "node compute-conf.js",
|
|
43
|
+
"build:bundle": "node bundle-script.js",
|
|
42
44
|
"package": "npm pack --pack-destination=\"../../dist/packages\"",
|
|
43
|
-
"copy
|
|
45
|
+
"build:copy-sentences": "ts-node copy-sentences.ts",
|
|
44
46
|
"uuv": "node node_modules/@uuv/playwright/bin/uuv",
|
|
45
47
|
"lint": "eslint -c .eslintrc.json",
|
|
46
48
|
"test": "jest"
|
|
47
49
|
},
|
|
50
|
+
"browser": {
|
|
51
|
+
"fs": false,
|
|
52
|
+
"os": false,
|
|
53
|
+
"path": false
|
|
54
|
+
},
|
|
48
55
|
"dependencies": {
|
|
49
|
-
"
|
|
56
|
+
"@ant-design/icons": "^5.0.1",
|
|
57
|
+
"@cucumber/cucumber": "9.1.0",
|
|
58
|
+
"antd": "^5.4.6",
|
|
50
59
|
"figlet": "1.6.0",
|
|
51
60
|
"playwright-chromium": "1.33.0"
|
|
52
61
|
},
|
|
@@ -63,7 +72,6 @@
|
|
|
63
72
|
]
|
|
64
73
|
},
|
|
65
74
|
"devDependencies": {
|
|
66
|
-
"@ant-design/icons": "^5.0.1",
|
|
67
75
|
"@testing-library/jest-dom": "5.16.5",
|
|
68
76
|
"@testing-library/react": "12.1.5",
|
|
69
77
|
"@testing-library/user-event": "14.4.3",
|
|
@@ -76,6 +84,7 @@
|
|
|
76
84
|
"@types/testing-library__jest-dom": "5.14.5",
|
|
77
85
|
"@typescript-eslint/eslint-plugin": "5.59.1",
|
|
78
86
|
"@typescript-eslint/parser": "5.59.1",
|
|
87
|
+
"@uuv/playwright": "^1.4.3",
|
|
79
88
|
"dom-accessibility-api": "0.5.16",
|
|
80
89
|
"eslint": "8.39.0",
|
|
81
90
|
"eslint-plugin-react": "7.32.2",
|
|
@@ -85,20 +94,18 @@
|
|
|
85
94
|
"minimist": "1.2.8",
|
|
86
95
|
"react": "17.0.2",
|
|
87
96
|
"react-dom": "17.0.2",
|
|
97
|
+
"react-router-dom": "^6.11.2",
|
|
88
98
|
"react-scripts": "^5.0.1",
|
|
89
99
|
"replace-json-property": "1.8.0",
|
|
90
100
|
"styled-components": "5.3.10",
|
|
91
101
|
"ts-jest": "29.1.0",
|
|
92
102
|
"ts-loader": "^9.4.2",
|
|
93
103
|
"ts-node": "10.9.1",
|
|
94
|
-
"typescript": "4.9.5"
|
|
95
|
-
"web-vitals": "3.3.1"
|
|
104
|
+
"typescript": "4.9.5"
|
|
96
105
|
},
|
|
97
106
|
"files": [
|
|
107
|
+
"dist/uuv-assistant-resources.bundle.js",
|
|
98
108
|
"dist/launcher/**/*",
|
|
99
|
-
"
|
|
100
|
-
"build/static/js/main.*.js",
|
|
101
|
-
"postinstall.js",
|
|
102
|
-
"target-config/**/*"
|
|
109
|
+
"postinstall.js"
|
|
103
110
|
]
|
|
104
111
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.anticon{display:inline-flex!important}.uuvAssistant{box-shadow:0 .0625em .0625em rgba(0,0,0,.25),0 .125em .5em rgba(0,0,0,.25),inset 0 0 0 1px hsla(0,0%,100%,.1);opacity:95%}.uuvArrowExpander{cursor:pointer;left:50%;width:30px}.uuvArrowExpander,.uuvFloatingButton{border-color:grey;height:30px;position:absolute;top:-1em}.uuvFloatingButton{width:120px;z-index:9999999779}.uuvActionAside :disabled{width:200px}.uuvActionAside{border-color:grey;margin-left:10%;margin-right:10px;width:80%}
|