diff --git a/CHANGELOG.md b/CHANGELOG.md index aa2acdb..d0b7d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.10.2 +==== +## Bug Fixes + - [Unable to debug applications when output.library in webpack.config.js is set](https://github.com/NativeScript/nativescript-vscode-extension/issues/263) + + 0.10.1 ==== ## Bug Fixes diff --git a/package.json b/package.json index 53f23b3..afae015 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "0.10.1", + "version": "0.10.2", "minNativescriptCliVersion": "2.5.0", "icon": "images/icon.png", "displayName": "NativeScript", diff --git a/src/debug-adapter/nativeScriptDebugAdapter.ts b/src/debug-adapter/nativeScriptDebugAdapter.ts index 3347986..e1ed5d7 100644 --- a/src/debug-adapter/nativeScriptDebugAdapter.ts +++ b/src/debug-adapter/nativeScriptDebugAdapter.ts @@ -186,7 +186,7 @@ export class NativeScriptDebugAdapter extends ChromeDebugAdapter { args.sourceMapPathOverrides['webpack:///*'] = `${fullAppDirPath}/*`; } - const webpackConfigFile = join(`./${args.webRoot}`, 'webpack.config.js'); + const webpackConfigFile = join(args.webRoot, 'webpack.config.js'); if (existsSync(webpackConfigFile)) { try {