Skip to content

Commit

Permalink
Readd types
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavohenke committed Dec 31, 2021
1 parent ab22aa3 commit 53c7a98
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "6.5.1",
"description": "Run commands concurrently",
"main": "index.js",
"types": "dist/src/index.d.ts",
"type": "commonjs",
"bin": {
"concurrently": "./dist/bin/concurrently.js"
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Readable } from 'stream';
import { CommandIdentifier } from './command';
import { concurrently, ConcurrentlyCommandInput, ConcurrentlyOptions as BaseConcurrentlyOptions } from './concurrently';
import { FlowController } from './flow-control/flow-controller';
import { InputHandler } from './flow-control/input-handler';
import { KillOnSignal } from './flow-control/kill-on-signal';
import { KillOthers, ProcessCloseCondition } from './flow-control/kill-others';
Expand Down Expand Up @@ -87,6 +88,7 @@ export default (commands: ConcurrentlyCommandInput[], options: Partial<Concurren
export {
concurrently,
Logger,
FlowController,
InputHandler,
KillOnSignal,
KillOthers,
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"target": "ES2019",
"lib": ["ES2019"],
"module": "CommonJS",
Expand Down

0 comments on commit 53c7a98

Please sign in to comment.