Skip to content

Commit

Permalink
Move files
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Jan 23, 2022
1 parent 7b1ecc3 commit 4ce7248
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 7 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import memoizeOne from 'memoize-one'
import pProps from 'p-props'

import { mapValues } from '../../../utils/map.js'
import { mapValues } from '../../../../utils/map.js'

import { createDag, addDagEdge } from './structure.js'

Expand Down
File renamed without changes.
11 changes: 6 additions & 5 deletions src/config/normalize/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ import { cleanObject } from '../../../utils/clean.js'
import { maybeFunction } from '../../../utils/function.js'
import { mapValues } from '../../../utils/map.js'
import { then } from '../../../utils/then.js'
import { runDagAsync } from '../dag/run.js'
import { isParent } from '../prop_path/compare.js'
import { list } from '../prop_path/get.js'
import { parse } from '../prop_path/parse.js'

import { runDagAsync } from './dag/run.js'
import { isParent } from './prop_path/compare.js'
import { list } from './prop_path/get.js'
import { parse } from './prop_path/parse.js'
// eslint-disable-next-line import/max-dependencies
import { set } from '../prop_path/set.js'
import { set } from './prop_path/set.js'

// Normalize configuration shape and do custom validation.
// Each configuration property declares a definition object with the sets of
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { setArray } from '../../../utils/set.js'
import { setArray } from '../../../../utils/set.js'

import { listEntries } from './entries.js'
import { parse } from './parse.js'
Expand Down

0 comments on commit 4ce7248

Please sign in to comment.