Skip to content

chore: update dependencies #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29,488 changes: 14,986 additions & 14,502 deletions package-lock.json

Large diffs are not rendered by default.

57 changes: 29 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,44 +28,45 @@
"tabWidth": 2
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.11.7",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"autoprefixer": "^9.7.4",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.1.0",
"cpy-cli": "^3.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"devtools-protocol": "0.0.748504",
"eslint": "^6.8.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-react": "^7.19.0",
"glob": "^7.1.6",
"@types/chai": "^4.3.1",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.35",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"autoprefixer": "^10.4.7",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.2.0",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.8",
"devtools-protocol": "0.0.1005172",
"eslint": "^8.15.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.30.0",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"lerna": "^3.20.2",
"lerna": "^4.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"postcss-loader": "^3.0.0",
"preact": "^10.3.4",
"prettier": "^2.0.4",
"raw-loader": "^4.0.0",
"postcss-loader": "^7.0.0",
"preact": "^10.7.2",
"prettier": "^2.6.2",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.1",
"source-map-support": "^0.5.16",
"style-loader": "^1.1.3",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"vitest": "^0.12.6",
"vscode-debugprotocol": "^1.39.0",
"vscode-test": "^1.3.0",
"webpack": "^5.70.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"preact-virtual-list": "^0.3.1"
Expand Down
190 changes: 136 additions & 54 deletions packages/vscode-js-profile-core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/vscode-js-profile-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"compile": "concurrently \"npm:compile:*\"",
"compile:ext": "tsc -p tsconfig.json",
"compile:esm": "tsc -p tsconfig.browser.json",
"compile:css": "cpy --parents --cwd=src \"**/*.css\" ../out/esm",
"compile:css": "cpy \"src/**/*.css\" out/esm",
"watch": "concurrently \"npm:watch:*\"",
"watch:ext": "tsc --watch",
"watch:esm": "tsc --watch -p tsconfig.browser.json",
"watch:css": "npm run compile:css && chokidar \"src/**/*.css\" -c \"cpy --parents --cwd=src '**/*.css' ../out/esm\""
},
"dependencies": {
"@vscode/codicons": "^0.0.28",
"node-fetch": "^2.6.1"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We build the extension for the web, too, and using node-fetch caused errors when the fallback was removed in their recent versions. Use an isomorphic package instead to get nice builds for both the web and node.

"@vscode/codicons": "^0.0.30",
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@types/node-fetch": "^2.5.5"
"@types/node-fetch": "^2.6.1"
}
}
2 changes: 1 addition & 1 deletion packages/vscode-js-profile-core/src/client/rich-filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const richFilter = <T extends {}>(): RichFilterComponent<T> => ({
);
setError(undefined);
} catch (e) {
setError(e.message);
setError((e as Error).message);
}
}, [regex, caseSensitive, text, data]);

Expand Down
Loading