Skip to content

Commit fce0474

Browse files
🤖 refactor: Use ESM import syntax.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/9b50c2a1d7e9ab7b4bc9c9ff88892e98c5f62244/src/transforms/codemod:use-esm-import-syntax.js Please contact the author of the transform if you believe there was an error.
1 parent 2ed7cec commit fce0474

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './DoublyLinkedList' ;
1+
export * from './DoublyLinkedList.js' ;

test/src/DoublyLinkedList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as dll from '../../src';
2+
import * as dll from '../../src/index.js';
33

44
test( "DoublyLinkedList" , t => {
55

test/src/list-spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as dll from '../../src';
2+
import * as dll from '../../src/index.js';
33

44
import * as spec from "@list-abstraction/specification" ;
55
spec.test( test , "DoublyLinkedList" , dll.DoublyLinkedList ) ;

0 commit comments

Comments
 (0)