Skip to content

Commit

Permalink
fix(deps): updates dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamel committed Jun 11, 2019
1 parent 6d5c6c9 commit a2043f5
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 23 deletions.
41 changes: 29 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,23 +112,23 @@
},
"dependencies": {
"arg": "^4.1.0",
"as-table": "^1.0.38",
"as-table": "^1.0.47",
"cli-belt": "^0.3.1",
"command-join": "^2.0.0",
"command-join": "^3.0.0",
"common-tags": "^1.8.0",
"concurrently": "^4.1.0",
"exits": "^2.0.0",
"find-up": "^4.0.0",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"js-yaml": "^3.13.1",
"loglevel": "^1.6.1",
"loglevel": "^1.6.2",
"manage-path": "^2.0.0",
"path-key": "^3.1.0",
"promist": "^0.7.0",
"prompts": "^2.1.0",
"string-argv": "^0.3.0",
"terminate-children": "^0.1.0"
"terminate-children": "^0.1.1"
},
"husky": {
"hooks": {
Expand Down
3 changes: 0 additions & 3 deletions src/@types/command-join.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/bin/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { loadPackage, flags, safePairs, splitBy } from 'cli-belt';
import { stripIndent as indent } from 'common-tags';
import arg from 'arg';
import chalk from 'chalk';
import join from 'command-join';
import { commandJoin as join } from 'command-join';
import contain from '~/core';
import { TLogger, IOfType } from '~/types';
import { run } from '~/commands';
Expand Down
2 changes: 1 addition & 1 deletion src/commands/stream.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IChild } from '~/core/types';
import { parallel, series } from '~/public';
import join from 'command-join';
import { commandJoin as join } from 'command-join';
import { NODE_PATH, KPO_PATH } from '~/constants';
import { IMultiExecOptions } from '~/types';
import chalk from 'chalk';
Expand Down
2 changes: 1 addition & 1 deletion src/public/exec/parallel.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logger from '~/utils/logger';
import expose from '~/utils/expose';
import exec from '~/utils/exec';
import join from 'command-join';
import { commandJoin as join } from 'command-join';
import { CONCURRENTLY_PATH } from '~/constants';
import { KpoError } from '~/utils/errors';
import { IOfType, IMultiExecOptions } from '~/types';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/exec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { spawn, fork as _fork, SpawnOptions, ForkOptions } from 'child_process';
import { DEFAULT_STDIO } from '~/constants';
import logger from '~/utils/logger';
import join from 'command-join';
import { commandJoin as join } from 'command-join';
import { IExecOptions } from '~/types';
import { absolute } from './file';
import EnvManager from '~/utils/env-manager';
Expand Down

0 comments on commit a2043f5

Please sign in to comment.