Skip to content

Commit

Permalink
Make imports non ambiguous
Browse files Browse the repository at this point in the history
  • Loading branch information
otacke committed Apr 11, 2024
1 parent 97be66e commit d26bb30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/entries/dist.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import BoilerplateSNORDIAN from '@scripts/h5p-boilerplate-snordian';
import BoilerplateSNORDIAN from '@scripts/h5p-boilerplate-snordian.js';

// Load library
H5P.BoilerplateSNORDIAN = BoilerplateSNORDIAN;
4 changes: 2 additions & 2 deletions src/scripts/h5p-boilerplate-snordian.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Util from '@services/util';
import Dictionary from '@services/dictionary';
import Util from '@services/util.js';
import Dictionary from '@services/dictionary.js';
import '@styles/h5p-boilerplate-snordian.scss';

export default class BoilerplateSNORDIAN extends H5P.EventDispatcher {
Expand Down

0 comments on commit d26bb30

Please sign in to comment.