Skip to content

Commit

Permalink
Fix source map option not being passed to plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
vstefanovic97 committed Feb 2, 2024
1 parent 3e8823a commit e2f9ada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/addon-dev/src/rollup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export class Addon {
return hbs();
}

gjs() {
return gjs();
gjs(options?: { inline_source_map: true }) {
return gjs(options);
}

// By default rollup does not clear the output directory between builds. This
Expand Down

0 comments on commit e2f9ada

Please sign in to comment.