Skip to content

Commit e810914

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

14 files changed

+14
-14
lines changed

test/src/attr/attr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/attr/len.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/decreasing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../src';
2+
import * as compare from "../../src/index.js";
33

44

55
test( "decreasing", t => {

test/src/fn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../src';
2+
import * as compare from "../../src/index.js";
33

44

55

test/src/increasing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../src';
2+
import * as compare from "../../src/index.js";
33

44

55
test( "increasing", t => {

test/src/lexicographical/colexicographical.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/lexicographical/fixedcolexicographical.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/lexicographical/fixedlexicographical.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/lexicographical/lexicographical.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

test/src/lexicographical/quasicolexicographical.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import test from 'ava';
2-
import * as compare from '../../../src';
2+
import * as compare from "../../../src/index.js";
33

44

55

0 commit comments

Comments
 (0)