Skip to content

Commit

Permalink
Move files
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Jan 2, 2022
1 parent 4226db1 commit 079e354
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/combination/ids/user.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getMergeIdsArray } from '../../system/merge/id.js'
import { getMergeIdsArray } from '../../history/merge/id.js'
import { getInputIds } from '../inputs.js'

import { getCombsDimensionsIds } from './get.js'
Expand Down
2 changes: 1 addition & 1 deletion src/history/data/main.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import inquirer from 'inquirer'

import { isTtyInput } from '../../report/tty.js'
import { groupMetadata, ungroupMetadata } from '../../system/merge/metadata.js'
import { pickLast } from '../../utils/last.js'
import { applyMainDelta, applySinceDelta } from '../delta/find.js'
import { groupMetadata, ungroupMetadata } from '../merge/metadata.js'
import { compressRawResult } from '../normalize/compress.js'
import { loadRawResults, normalizeRawResults } from '../normalize/load.js'

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import {
removeResultCombinations,
hasSameCombinations,
} from '../../combination/result.js'
import { mergeSystems } from '../../system/merge.js'
import { cleanObject } from '../../utils/clean.js'
import { groupBy } from '../../utils/group.js'
import { pickLast } from '../../utils/last.js'
import { mergeSystems } from '../merge.js'

// Merge all results with the same `mergeId`.
// The `merge` configuration property can be used to merge several results.
Expand Down
2 changes: 1 addition & 1 deletion src/history/normalize/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { addDefaultIds } from '../../combination/default.js'
import { keepResultCombinations } from '../../combination/result.js'
import { selectRawResult } from '../../select/main.js'
import { validateSelectMatches } from '../../select/validate.js'
import { mergeResults } from '../../system/merge/results.js'
import { pickLast } from '../../utils/last.js'
import { mergeResults } from '../merge/results.js'

import { decompressRawResult } from './compress.js'
import { migrateRawResults } from './migrate.js'
Expand Down
2 changes: 1 addition & 1 deletion src/system/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import envCi from 'env-ci'
import osName from 'os-name'
import { v4 as uuidv4 } from 'uuid'

import { getMergeIdProp } from '../history/merge/id.js'
import { cleanObject } from '../utils/clean.js'
import { groupBy } from '../utils/group.js'

import { getMergeIdProp } from './merge/id.js'
import { getTimestamp } from './timestamp.js'

// Users can specify a `system` configuration property.
Expand Down

0 comments on commit 079e354

Please sign in to comment.