Skip to content

Commit

Permalink
Rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Jan 30, 2022
1 parent 6adb893 commit e181bd4
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/combination/tasks/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { basename } from 'path'
import { isNotJunk } from 'junk'

import { lookupFiles } from '../../config/lookup.js'
import { DEFAULT_TASKS_BASE } from '../../config/normalize/path.js'
import { DEFAULT_TASKS_BASE } from '../../config/normalize/cwd.js'

// Apply default value for `tasks`. Applied on each runner.
// This only applies when `tasks` is `undefined`
Expand Down
2 changes: 1 addition & 1 deletion src/config/load/default.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { basename } from 'path'

import { lookupFiles } from '../lookup.js'
import { CLI_FLAGS_BASE } from '../normalize/path.js'
import { CLI_FLAGS_BASE } from '../normalize/cwd.js'

import { getConfigFilenames } from './contents.js'

Expand Down
2 changes: 1 addition & 1 deletion src/config/load/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { mergeConfigs } from '../merge/main.js'
import { CLI_FLAGS_BASE } from '../normalize/path.js'
import { CLI_FLAGS_BASE } from '../normalize/cwd.js'

import { getConfigsInfos } from './info.js'
import { addNpxShortcut } from './npx.js'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/config/normalize/prop_defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { getShowMetadataDefault } from '../../top/omit.js'
import { getDefaultConfig } from '../load/default.js'
import { normalizeConfigSelectors } from '../select/normalize.js'

import { getPropCwd } from './path.js'
import { getPropCwd } from './cwd.js'
import { normalizeOptionalArray } from './transform.js'
import {
validateBoolean,
Expand Down
2 changes: 1 addition & 1 deletion src/config/plugin/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createRequire } from 'module'

import { PluginError, UserError } from '../../error/main.js'
import { wrapError } from '../../error/wrap.js'
import { PLUGINS_IMPORT_BASE } from '../normalize/path.js'
import { PLUGINS_IMPORT_BASE } from '../normalize/cwd.js'

// Import plugin's code
export const loadPlugins = async function ({
Expand Down

0 comments on commit e181bd4

Please sign in to comment.