mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 20:13:32 +01:00
code-web: use async glob
This commit is contained in:
@@ -81,7 +81,7 @@ async function initialize() {
|
||||
if (packageJSON.browser) {
|
||||
packageJSON.main = packageJSON.browser;
|
||||
|
||||
const webpackConfigLocations = glob.sync(
|
||||
const webpackConfigLocations = await util.promisify(glob)(
|
||||
path.join(EXTENSIONS_ROOT, extensionFolder, '**', 'extension-browser.webpack.config.js'),
|
||||
{ ignore: ['**/node_modules'] }
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user