Skip to content

Commit

Permalink
Support re-export for custom task.
Browse files Browse the repository at this point in the history
Signed-off-by: Lewin Tan <e_tanhaiyang@163.com>
  • Loading branch information
shyshywhy committed Apr 2, 2021
1 parent 095f52f commit 80725c2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/

import { interfaces, Container } from 'inversify';
import { interfaces, Container } from '@theia/core/shared/inversify';
import { CustomTask, TaskFactory, TaskCustomOptions } from './custom-task';
import { CustomTaskRunner } from './custom-task-runner';
import { CustomTaskRunnerContribution } from './custom-task-runner-contribution';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/

import { injectable, inject } from 'inversify';
import { injectable, inject } from '@theia/core/shared/inversify';
import { CustomTaskRunner } from './custom-task-runner';
import { TaskRunnerContribution, TaskRunnerRegistry } from '../task-runner';

Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/node/custom/custom-task-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import { TaskConfiguration } from '../../common';
import { Task } from '../task';
import { TaskRunner } from '../task-runner';
import { injectable, inject, named } from 'inversify';
import { injectable, inject, named } from '@theia/core/shared/inversify';
import { ILogger } from '@theia/core';
import { TaskFactory } from './custom-task';
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/task/src/node/custom/custom-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/

import { injectable, inject, named } from 'inversify';
import { injectable, inject, named } from '@theia/core/shared/inversify';
import { ILogger, MaybePromise } from '@theia/core/lib/common/';
import { Task, TaskOptions } from '../task';
import { TaskManager } from '../task-manager';
Expand Down

0 comments on commit 80725c2

Please sign in to comment.