Skip to content

Commit 7231b64

Browse files
committed
Use the correct full path links for relative module references
1 parent 34d8074 commit 7231b64

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

modules/index-all.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export { default } from './index-default';
2-
export * from './index';
1+
export { default } from './index-default.js';
2+
export * from './index.js';

modules/index-default.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as allExports from './index';
2-
import { mixin } from './index';
1+
import * as allExports from './index.js';
2+
import { mixin } from './index.js';
33

44
// Add all of the Underscore functions to the wrapper object and return it.
55
export default mixin(allExports);

underscore.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)