Skip to content

Commit

Permalink
refactor(module-source): Converge file naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Sep 5, 2024
1 parent b1f2836 commit 31db01e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/module-source/src/transform-analyze.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-nocheck XXX Babel types
import { makeTransformSource } from './transformSource.js';
import makeModulePlugins from './babelPlugin.js';
import { makeTransformSource } from './transform-source.js';
import makeModulePlugins from './babel-plugin.js';

import * as h from './hidden.js';

Expand Down
4 changes: 2 additions & 2 deletions packages/module-source/test/benchmark-babel-plugin.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Benchmark from 'benchmark';
import fs from 'fs';
import url from 'url';
import { makeTransformSource } from '../src/transformSource.js';
import makeModulePlugins from '../src/babelPlugin.js';
import { makeTransformSource } from '../src/transform-source.js';
import makeModulePlugins from '../src/babel-plugin.js';

const suite = new Benchmark.Suite();

Expand Down

0 comments on commit 31db01e

Please sign in to comment.