Skip to content

Commit 932edfe

Browse files
authored
chore: Update globby and copy-webpack-plugin (#662)
1 parent 60091d4 commit 932edfe

File tree

4 files changed

+101
-33
lines changed

4 files changed

+101
-33
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,11 +646,11 @@
646646
"@types/lodash": "^4.14.182",
647647
"@types/minimatch": "^3.0.3",
648648
"@types/mocha": "^9.1.1",
649-
"@types/node": "^14.18.21",
649+
"@types/node": "16.x",
650650
"@types/semver": "^7.3.10",
651651
"@types/vscode": "1.69.0",
652652
"@vscode/test-electron": "^2.1.5",
653-
"copy-webpack-plugin": "^9.1.0",
653+
"copy-webpack-plugin": "^11.0.0",
654654
"glob": "^7.2.3",
655655
"mocha": "^9.2.2",
656656
"ts-loader": "^9.3.1",
@@ -663,7 +663,7 @@
663663
"dependencies": {
664664
"await-lock": "^2.2.2",
665665
"fs-extra": "^10.1.0",
666-
"globby": "^11.1.0",
666+
"globby": "^13.1.2",
667667
"lodash": "^4.17.21",
668668
"minimatch": "^3.1.2",
669669
"semver": "^7.3.7",

src/exportJarSteps/ExportJarTaskProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import { lstat } from "fs-extra";
5-
import * as globby from "globby";
5+
import { globby } from "globby";
66
import * as _ from "lodash";
77
import { platform } from "os";
88
import { dirname, extname, isAbsolute, join, relative } from "path";

src/exportJarSteps/GenerateJarExecutor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import { ensureDir, pathExists } from "fs-extra";
5-
import globby = require("globby");
5+
import { globby } from "globby";
66
import * as _ from "lodash";
77
import { basename, dirname, extname, isAbsolute, join, normalize, relative } from "path";
88
import { Disposable, ProgressLocation, QuickInputButtons, QuickPickItem, Uri, window, WorkspaceFolder } from "vscode";

0 commit comments

Comments
 (0)