Skip to content

Commit

Permalink
Rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 13, 2022
1 parent f6c25b7 commit 02e1ebd
Show file tree
Hide file tree
Showing 28 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/config/load/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { UserError } from '../../error/main.js'
import { findValues } from '../../utils/recurse.js'
import { addBases, getBasePath } from '../cwd.js'
import { deepMerge, isRecurseObject } from '../merge.js'
import { serializePath } from '../normalize/lib/wild_wild_parser/main.js'
import { get, has, set } from '../normalize/lib/wild_wild_path/main.js'
import { serializePath } from '../normalize/lib/wild_wild_path_parser/main.js'

import { loadConfigContents } from './contents.js'
import { normalizeConfigProp } from './normalize.js'
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { applyRule } from './apply.js'
import { addMoves } from './move.js'
import { getOpts } from './opts.js'
import { addWarnings } from './warn.js'
import { isSamePath } from './wild_wild_parser/main.js'
import { set, remove } from './wild_wild_path/main.js'
import { isSamePath } from './wild_wild_path_parser/main.js'

// Apply rule for a specific entry
export const applyEntryRule = async function (
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/modify.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { callValueFunc, callUserFunc, getValidateExampleError } from './call.js'
import { resolvePath } from './path.js'
import { transformValue } from './transform.js'
import { getWarnings } from './warn.js'
import { parsePath } from './wild_wild_parser/main.js'
import { has } from './wild_wild_path/main.js'
import { parsePath } from './wild_wild_path_parser/main.js'

// Once the initial value has been computed, apply validation and transforms,
// unless the value is `undefined`.
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/move.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isParentPath, isSamePath } from './wild_wild_path_parser/main.js'
import { isParentPath, isSamePath } from './wild_wild_parser/main.js'

// When a property is moved to another, record it.
export const addMoves = function (moves, newPaths, oldNamePath) {
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/opts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { callUserFunc } from './call.js'
import { getCwd } from './cwd.js'
import { applyMoves } from './move.js'
import { getPrefix, DEFAULT_PREFIX } from './prefix.js'
import { parsePath, serializePath } from './wild_wild_path_parser/main.js'
import { parsePath, serializePath } from './wild_wild_parser/main.js'

// Retrieve `opts` passed to most methods.
// `funcOpts` are passed to user-provided functions.
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/rule.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseQuery, serializeQuery } from './wild_wild_parser/main.js'
import { get } from './wild_wild_path/main.js'
import { parseQuery, serializeQuery } from './wild_wild_path_parser/main.js'

// Validate and normalize rules.
// All methods and properties that use queries can use either the string or the
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import isPlainObj from 'is-plain-obj'
import pReduce from 'p-reduce'

import { callValueFunc } from './call.js'
import { parsePath } from './wild_wild_path_parser/main.js'
import { parsePath } from './wild_wild_parser/main.js'

// Apply `transform(value, opts)` which transforms the value set by the user.
// If can also delete it by returning `undefined`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isSamePath, isSameToken } from '../../wild_wild_path_parser/main.js'
import { isSamePath, isSameToken } from '../../wild_wild_parser/main.js'

// Remove duplicate entries
export const removeDuplicates = function (entries) {
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/wild_wild_path/iterate/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseQuery, serializePath } from '../../wild_wild_path_parser/main.js'
import { parseQuery, serializePath } from '../../wild_wild_parser/main.js'
import { validateInherited } from '../validate.js'

import { removeDuplicates } from './duplicate.js'
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/wild_wild_path/tokens/any_deep.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getTokenType as getTokenTypeName } from '../../wild_wild_path_parser/main.js'
import { getTokenType as getTokenTypeName } from '../../wild_wild_parser/main.js'

// Handle ** recursion.
// It matches 0, 1 or more levels.
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/wild_wild_path/tokens/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getTokenType as getTokenTypeName } from '../../wild_wild_path_parser/main.js'
import { getTokenType as getTokenTypeName } from '../../wild_wild_parser/main.js'

import { ANY_TOKEN } from './any.js'
import { ANY_DEEP_TOKEN } from './any_deep.js'
Expand Down
2 changes: 1 addition & 1 deletion src/config/normalize/lib/wild_wild_utils/include.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { isParentPath } from '../wild_wild_parser/main.js'
import { set, remove, list } from '../wild_wild_path/main.js'
import { isParentPath } from '../wild_wild_path_parser/main.js'

// Returns an object with only the properties being queried.
export const pick = function (
Expand Down
2 changes: 1 addition & 1 deletion src/config/plugin/lib/shape.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getDummyRules } from '../../normalize/dummy.js'
import { isSameQuery } from '../../normalize/lib/wild_wild_path_parser/main.js'
import { isSameQuery } from '../../normalize/lib/wild_wild_parser/main.js'
import { validateDefinedString } from '../../normalize/validate/simple.js'

import { PluginError, UserError, CoreError } from './error.js'
Expand Down
2 changes: 1 addition & 1 deletion src/config/plugin/lib/shared.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseQuery } from '../../normalize/lib/wild_wild_path_parser/main.js'
import { parseQuery } from '../../normalize/lib/wild_wild_parser/main.js'
import { pick } from '../../normalize/lib/wild_wild_utils/main.js'

// Retrieve top-level properties that are shared with all plugins of a specific
Expand Down

0 comments on commit 02e1ebd

Please sign in to comment.