Skip to content

Commit f39274a

Browse files
committed
deleted hopefully unused dependencies
Co-authored-by: Jesse Rosengrant <jollywizrobe>
1 parent a044adc commit f39274a

File tree

6 files changed

+15
-17
lines changed

6 files changed

+15
-17
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "tests/manual-tests/recoilTest"]
2-
path = tests/manual-tests/recoilTest
3-
url = https://github.com/kevinfey/recoilTest
41
[submodule "reactime-website"]
52
path = reactime-website
63
url = https://github.com/reactimetravel/reactime-website

.npmcheckrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{"depcheck":
2+
{
3+
"ignoreMatches": [
4+
"css-loader",
5+
"sass-loader",
6+
"style-loader",
7+
"typedoc-webpack-plugin"
8+
]
9+
}
10+
}

package.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "build web extension bundle.js",
44
"scripts": {
55
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode production",
6-
"dev": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode development --watch",
6+
"dev": "set NODE_OPTIONS=--openssl-legacy-provider&& webpack --mode development --watch",
77
"buildlegacy": "webpack --mode production",
88
"devlegacy": "webpack --mode development --watch",
99
"test": "jest --verbose --coverage",
@@ -134,7 +134,7 @@
134134
"@types/d3-scale-chromatic": "^2.0.0",
135135
"@types/jest": "^29.5.0",
136136
"@types/lodash.isequal": "^4.5.5",
137-
"@types/node": "^12.19.6",
137+
"@types/node": "^14.0.0",
138138
"@types/react": "^17.0.43",
139139
"@types/react-router": "^5.1.20",
140140
"@typescript-eslint/eslint-plugin": "^3.6.1",
@@ -160,7 +160,6 @@
160160
"jest-diff": "^26.1.0",
161161
"jest-environment-jsdom": "^29.5.0",
162162
"jest-runner-eslint": "^2.0.0",
163-
"jscharting-react": "^1.2.1",
164163
"jsdom": "^21.1.2",
165164
"prettier": "2.8.4",
166165
"puppeteer": "^14.3.0",
@@ -182,11 +181,6 @@
182181
"dependencies": {
183182
"@emotion/react": "^11.11.1",
184183
"@emotion/styled": "^11.11.0",
185-
"@fortawesome/fontawesome-free": "^5.15.1",
186-
"@fortawesome/fontawesome-svg-core": "^1.2.32",
187-
"@fortawesome/free-regular-svg-icons": "^5.15.1",
188-
"@fortawesome/free-solid-svg-icons": "^5.15.1",
189-
"@fortawesome/react-fontawesome": "^0.1.12",
190184
"@mui/icons-material": "^5.14.1",
191185
"@mui/material": "^5.14.12",
192186
"@mui/styled-engine-sc": "^5.12.0",
@@ -213,16 +207,13 @@
213207
"acorn": "^7.3.1",
214208
"acorn-jsx": "^5.2.0",
215209
"apexcharts": "^3.23.1",
216-
"chai": "^4.2.0",
217210
"d3": "^7.6.1",
218211
"d3-scale-chromatic": "^3.0.0",
219212
"d3-shape": "^2.0.0",
220213
"d3-zoom": "^3.0.0",
221-
"identity-obj-proxy": "^3.0.0",
222214
"intro.js": "^5.0.0",
223215
"intro.js-react": "^0.6.0",
224216
"jest-runner": "^26.1.0",
225-
"jscharting": "^3.0.2",
226217
"jsondiffpatch": "^0.3.11",
227218
"lodash": "^4.17.21",
228219
"prop-types": "^15.7.2",
@@ -238,7 +229,6 @@
238229
"react-router-dom": "^5.2.0",
239230
"react-select": "^3.2.0",
240231
"react-spinners": "^0.11.0",
241-
"recoil": "0.0.10",
242232
"redux": "^4.2.1",
243233
"redux-mock-store": "^1.5.4",
244234
"styled-components": "^6.0.4",

src/app/components/StateRoute/ComponentMap/ComponentMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export default function ComponentMap({
127127
};
128128

129129
const formatRenderTime: string = (time: number): string => {
130-
const renderTime = time.toFixed(3);
130+
const renderTime = parseFloat(time).toFixed(3);
131131
return `${renderTime} ms `;
132132
};
133133

src/backend/models/masterState.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export default {
1212
*/
1313
clear: (): void => {
1414
componentActionsRecord = [];
15+
1516
},
1617

1718
/**

src/extension/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Reactime",
3-
"version": "22.0.0",
3+
"version": "23.0.0",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
66
"manifest_version": 3,

0 commit comments

Comments
 (0)