Skip to content

Commit

Permalink
Add ".js" extension to imports in fluent-dom and fluent-langneg (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli authored Dec 21, 2021
1 parent 67905cb commit 2f03d36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions fluent-dom/src/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default as DOMLocalization } from "./dom_localization";
export { default as Localization } from "./localization";
export { default as DOMLocalization } from "./dom_localization.js";
export { default as Localization } from "./localization.js";
9 changes: 5 additions & 4 deletions fluent-langneg/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
*/

export {
negotiateLanguages, NegotiateLanguagesOptions
} from "./negotiate_languages";
export {acceptedLanguages} from "./accepted_languages";
export {filterMatches} from "./matches";
negotiateLanguages,
NegotiateLanguagesOptions,
} from "./negotiate_languages.js";
export { acceptedLanguages } from "./accepted_languages.js";
export { filterMatches } from "./matches.js";

0 comments on commit 2f03d36

Please sign in to comment.