Skip to content

Commit

Permalink
Move file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed May 15, 2019
1 parent 8108bb2 commit 545682f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import execa from 'execa'
import PluginError from 'plugin-error'

import { validateInput } from './input.js'
import { parseOpts } from './options.js'
import { parseOpts } from './options/main.js'
import { printEcho } from './echo.js'

// Execute a child process (command + arguments)
Expand Down
2 changes: 1 addition & 1 deletion src/options.js → src/options/main.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { validate } from 'jest-validate'
import isCi from 'is-ci'

import { isPlainObject, pickBy } from './utils.js'
import { isPlainObject, pickBy } from '../utils.js'

// Parse options
export const parseOpts = function({
Expand Down
2 changes: 1 addition & 1 deletion src/stream/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { callbackify } from 'util'

import through from 'through2-concurrent'

import { parseOpts } from '../options.js'
import { parseOpts } from '../options/main.js'

import { getDefaultOpts, forcedOpts } from './options.js'
import { setResult } from './result.js'
Expand Down
2 changes: 1 addition & 1 deletion src/task.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import renameFn from 'rename-fn'

import { validateInput } from './input.js'
import { parseOpts } from './options.js'
import { parseOpts } from './options/main.js'
import { execCommand } from './exec.js'

// Create a Gulp task that fires a child process (command + arguments)
Expand Down

0 comments on commit 545682f

Please sign in to comment.