Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed May 18, 2023
1 parent 5adf76a commit c373485
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/addon-dev/src/rollup-app-reexports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ export default function appReexports(opts: {
});
}
}
let originalPublicAssets = pkg['ember-addon']?.['app-js'];
let originalAppJS = pkg['ember-addon']?.['app-js'];

let hasChanges =
JSON.stringify(originalPublicAssets) !== JSON.stringify(appJS);
let hasChanges = JSON.stringify(originalAppJS) !== JSON.stringify(appJS);

// Don't cause a file i/o event unless something actually changed
if (hasChanges) {
Expand Down

0 comments on commit c373485

Please sign in to comment.