Skip to content

Commit 8bd0782

Browse files
fix: debugging breakpoints not working (#4972)
For some reason this separate fix caused debugging breakpoints to no be able to be registered. Reverting this separate fix for now until we can determine why. Signed-off-by: Nikolas Komonen <[email protected]>
1 parent bd9bc0c commit 8bd0782

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/toolkit/scripts/build/handlePackageJson.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function main() {
2525

2626
if (args.includes('--development')) {
2727
/** When we actually package the extension the null extension does not occur, so we will skip this hack */
28-
fixNullExtensionIssue(restoreMode)
28+
// fixNullExtensionIssue(restoreMode)
2929
}
3030

3131
const packageJsonFile = './package.json'
@@ -71,7 +71,7 @@ function main() {
7171
*
7272
* Github Issue: https://github.com/aws/aws-toolkit-vscode/issues/4658
7373
*/
74-
function fixNullExtensionIssue(restoreMode: boolean) {
74+
export function fixNullExtensionIssue(restoreMode: boolean) {
7575
const corePackageJsonFile = '../core/package.json'
7676
const backupJsonFile = `${corePackageJsonFile}.core.bk`
7777

0 commit comments

Comments
 (0)