Skip to content

Commit

Permalink
🤖 refactor: Use ESM import syntax.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/8134808bd3e9bcbb3e4b2ca5401e2dee58965a01/src/transforms/codemod:use-esm-import-syntax.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Dec 20, 2021
1 parent 506b794 commit 0033f45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './mock';
export * from './test';
export * from './mock.js';
export * from './test.js';
2 changes: 1 addition & 1 deletion test/src/inplacesort.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// eslint-disable-next-line ava/use-test
import ava from 'ava';
import * as spec from '../../src';
import * as spec from '../../src/index.js';

spec.test(ava, [['mock', spec.mock]]);

Expand Down

0 comments on commit 0033f45

Please # to comment.