Skip to content

Commit 81661fd

Browse files
committed
Merge branch 'pr/nakrovati/1359'
2 parents 7db95c0 + 411909d commit 81661fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+7989
-19491
lines changed

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ output/
1414
webdriver-ts/results.json
1515
webdriver-ts/results/
1616
webdriver-ts/traces/
17+
18+
# Webdriver-ts-results
19+
webdriver-ts-results/table.html
20+
webdriver-ts-results/src/results.ts

webdriver-ts-results/.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

webdriver-ts-results/package-lock.json

Lines changed: 5345 additions & 18116 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webdriver-ts-results/package.json

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@
1212
"redux": "^4.2.1"
1313
},
1414
"scripts": {
15-
"start": "react-scripts start",
16-
"build": "react-scripts build",
17-
"test": "react-scripts test",
18-
"eject": "react-scripts eject",
15+
"start": "webpack serve --mode development -c webpack.config.dev.js",
16+
"build": "webpack --mode production",
1917
"lint": "eslint src/",
20-
"build-prod": "rimraf --glob dist && cross-env NODE_ENV=\"production\" webpack --env prod && rimraf --glob table.html && rimraf --glob \"BoxPlotTable*.js\" && cpx dist/table.html . && cpx \"dist/BoxPlotTable*.js\" . && cpx \"dist/plotly*.js\" ."
21-
},
22-
"eslintConfig": {
23-
"extends": "react-app"
18+
"build-prod": "cross-env NODE_ENV=\"production\" webpack --mode production && rimraf --glob table.html && rimraf --glob \"BoxPlotTable*.js\" && cpx dist/table.html . && cpx \"dist/BoxPlotTable*.js\" . && cpx \"dist/plotly*.js\" ."
2419
},
2520
"browserslist": {
2621
"production": [
@@ -35,24 +30,26 @@
3530
]
3631
},
3732
"devDependencies": {
38-
"@testing-library/jest-dom": "^6.1.1",
39-
"@testing-library/react": "^14.0.0",
40-
"@testing-library/user-event": "^14.4.3",
4133
"@types/node": "^20.5.3",
4234
"@types/react": "^18.2.21",
4335
"@types/react-dom": "^18.2.7",
36+
"@typescript-eslint/eslint-plugin": "^6.5.0",
37+
"@typescript-eslint/parser": "^6.5.0",
4438
"cpx": "1.5.0",
4539
"cross-env": "7.0.3",
40+
"css-loader": "^6.8.1",
4641
"eslint": "^8.47.0",
42+
"eslint-plugin-react": "^7.33.2",
4743
"eslint-plugin-react-hooks": "^4.6.0",
48-
"html-webpack-plugin": "^5.5.0",
44+
"html-webpack-plugin": "^5.5.3",
4945
"inline-chunk-html-plugin": "^1.1.1",
50-
"react-scripts": "^5.0.1",
5146
"rimraf": "^4.3.1",
52-
"ts-loader": "^9.4.2",
53-
"typescript": "^4.9.5",
47+
"style-loader": "^3.3.3",
48+
"ts-loader": "^9.4.4",
49+
"typescript": "^5.2.2",
5450
"webpack": "^5.88.2",
55-
"webpack-bundle-analyzer": "^4.8.0",
56-
"webpack-cli": "^5.0.1"
51+
"webpack-bundle-analyzer": "^4.9.1",
52+
"webpack-cli": "^5.1.4",
53+
"webpack-dev-server": "^4.15.1"
5754
}
5855
}
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<title>Interactive Results</title>
6-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7-
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
</head>
9-
<body>
10-
<div id='root' class='container'></div>
11-
</body>
12-
</html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Interactive Results</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
</head>
9+
<body>
10+
<div id="root" class="container"></div>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)