Skip to content

Commit

Permalink
Update eslint dependency to >= 8.43.0
Browse files Browse the repository at this point in the history
Also updated some related packages that were quite old.

Earlier versions of eslint have content that's licensed under an
unapproved license. I adjusted the version we request in a few places.

An older version was still being pulled from one of our dependencies,
"rewire". Upon searching the sources, I could not find where this
dependency was being used and so I removed it.

Signed-off-by: Marc Dumais <[email protected]>
  • Loading branch information
marcdumais-work committed Feb 13, 2024
1 parent 9707660 commit 2443855
Show file tree
Hide file tree
Showing 5 changed files with 290 additions and 774 deletions.
6 changes: 3 additions & 3 deletions vscode-trace-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"@types/jest": "^23.3.13",
"@types/json-bigint": "^1.0.1",
"@types/node": "^10.1.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"typescript": "^4.1.3",
"eslint": "^7.3.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.20.0"
Expand Down
8 changes: 4 additions & 4 deletions vscode-trace-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,14 @@
"@types/json-bigint": "^1.0.1",
"@types/node": "^10.1.2",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.3.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.20.0",
"rewire": "^4.0.1",

"rimraf": "^2.6.3",
"source-map-loader": "^1.0.2",
"style-loader": "^2.0.0",
Expand Down
1 change: 1 addition & 0 deletions vscode-trace-extension/src/trace-explorer/trace-tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const rootPath = path.resolve(__dirname, '../../..');
const traceManager = new TraceManager(getTspClient());
const experimentManager = new ExperimentManager(getTspClient(), traceManager);

// eslint-disable-next-line no-shadow
export enum ProgressMessages {
COMPLETE = 'Complete',
MERGING_TRACES = 'Merging trace(s)',
Expand Down
8 changes: 4 additions & 4 deletions vscode-trace-webviews/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
"@types/node": "^10.1.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"css-loader": "^5.0.1",
"rewire": "^4.0.1",

"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"eslint": "^7.3.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.20.0"
Expand Down
Loading

0 comments on commit 2443855

Please sign in to comment.