Skip to content

Commit

Permalink
Updates dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Mar 28, 2021
1 parent 5837d2a commit 480e2f8
Show file tree
Hide file tree
Showing 6 changed files with 249 additions and 237 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9430,7 +9430,7 @@
"vscode:prepublish": "yarn run bundle:esbuild"
},
"dependencies": {
"@octokit/graphql": "4.6.0",
"@octokit/graphql": "4.6.1",
"chroma-js": "2.1.1",
"dayjs": "1.10.4",
"iconv-lite": "0.6.2",
Expand All @@ -9446,32 +9446,32 @@
"@types/node": "12.12.70",
"@types/sortablejs": "1.10.6",
"@types/vscode": "1.53.0",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"circular-dependency-plugin": "5.2.2",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "8.0.0",
"copy-webpack-plugin": "8.1.0",
"csp-html-webpack-plugin": "5.1.0",
"css-loader": "5.1.1",
"esbuild-loader": "2.9.2",
"eslint": "7.21.0",
"css-loader": "5.2.0",
"esbuild-loader": "2.11.0",
"eslint": "7.23.0",
"eslint-cli": "1.1.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"fork-ts-checker-webpack-plugin": "6.1.1",
"html-loader": "2.1.1",
"html-webpack-plugin": "5.2.0",
"fork-ts-checker-webpack-plugin": "6.2.0",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.1",
"image-minimizer-webpack-plugin": "2.2.0",
"imagemin-webp": "6.0.0",
"mini-css-extract-plugin": "1.3.9",
"mini-css-extract-plugin": "1.4.0",
"node-sass": "5.0.0",
"prettier": "2.2.1",
"sass-loader": "11.0.1",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "8.0.17",
"ts-loader": "8.1.0",
"typescript": "4.2.3",
"vsce": "1.85.1",
"webpack": "5.24.3",
"vsce": "1.87.0",
"webpack": "5.28.0",
"webpack-bundle-analyzer": "4.4.0",
"webpack-cli": "4.2.0"
}
Expand Down
2 changes: 2 additions & 0 deletions src/commands/remoteProviders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export class ConnectRemoteProviderCommand extends Command {
if (pick?.item == null) return undefined;

repoPath = pick.repoPath;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
remote = repos.get(pick.item)!;
}
} else if (args?.remote == null) {
Expand Down Expand Up @@ -156,6 +157,7 @@ export class DisconnectRemoteProviderCommand extends Command {
if (pick?.item == null) return undefined;

repoPath = pick.repoPath;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
remote = repos.get(pick.item)!;
}
} else if (args?.remote == null) {
Expand Down
1 change: 1 addition & 0 deletions src/commands/showQuickCommitFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ export class ShowQuickCommitFileCommand extends ActiveEditorCachedCommand {

const fileName = args.commit.fileName;
if (args.commit instanceof GitBlameCommit) {
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
args.commit = (await Container.git.getCommit(args.commit.repoPath, args.commit.ref))!;
}

Expand Down
1 change: 1 addition & 0 deletions src/git/gitUri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,7 @@ export class GitUri extends ((Uri as any) as UriEx) {

ref = uriOrRef.sha;
shortSha = uriOrRef.shortSha;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
repoPath = uriOrRef.repoPath!;
}

Expand Down
10 changes: 1 addition & 9 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { CleanWebpackPlugin: CleanPlugin } = require('clean-webpack-plugin');
const CircularDependencyPlugin = require('circular-dependency-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const CspHtmlPlugin = require('csp-html-webpack-plugin');
const { ESBuildPlugin, ESBuildMinifyPlugin } = require('esbuild-loader');
const { ESBuildMinifyPlugin } = require('esbuild-loader');
const ForkTsCheckerPlugin = require('fork-ts-checker-webpack-plugin');
const HtmlPlugin = require('html-webpack-plugin');
const ImageMinimizerPlugin = require('image-minimizer-webpack-plugin');
Expand Down Expand Up @@ -103,10 +103,6 @@ function getExtensionConfig(mode, env) {
}),
];

if (env.esbuild) {
plugins.push(new ESBuildPlugin());
}

if (env.analyzeDeps) {
plugins.push(
new CircularDependencyPlugin({
Expand Down Expand Up @@ -398,10 +394,6 @@ function getWebviewsConfig(mode, env) {
}),
];

if (env.esbuild) {
plugins.push(new ESBuildPlugin());
}

return {
name: 'webviews',
context: basePath,
Expand Down

0 comments on commit 480e2f8

Please sign in to comment.