diff --git a/build/lib/extensions.js b/build/lib/extensions.js index a9f35d3bbc0a84ecdc9256cfe8840538afd81b9a..4eda9210c1af4c0d9a6b0b84af40cc0b9a832991 100644 --- a/build/lib/extensions.js +++ b/build/lib/extensions.js @@ -69,7 +69,7 @@ function fromLocal(extensionPath, sourceMappingURLBase) { .pipe(packageJsonFilter.restore); var webpackStreams = webpackConfigLocations.map(function (webpackConfigPath) { var webpackDone = function (err, stats) { - util.log("Bundled extension: " + util.colors.yellow(path.basename(extensionPath)) + "..."); + util.log("Bundled extension: " + util.colors.yellow(path.join(path.basename(extensionPath), path.relative(extensionPath, webpackConfigPath))) + "..."); if (err) { result.emit('error', err); } diff --git a/build/lib/extensions.ts b/build/lib/extensions.ts index c99b63a722634ae4e7130bf9a56dc53500ff665e..115adaca5df24a682b132f6e5fae4b8aa7f9ba75 100644 --- a/build/lib/extensions.ts +++ b/build/lib/extensions.ts @@ -71,7 +71,7 @@ export function fromLocal(extensionPath: string, sourceMappingURLBase?: string): const webpackStreams = webpackConfigLocations.map(webpackConfigPath => { const webpackDone = (err, stats) => { - util.log(`Bundled extension: ${util.colors.yellow(path.basename(extensionPath))}...`); + util.log(`Bundled extension: ${util.colors.yellow(path.join(path.basename(extensionPath), path.relative(extensionPath, webpackConfigPath)))}...`); if (err) { result.emit('error', err); }