File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 99import * as core from './core' ;
1010import * as home from './home' ;
1111import * as misc from './misc' ;
12+
13+ import { ProjectTasks , TaskItem } from './project/tasks' ;
14+
1215import BaseStage from './installer/stages/base' ;
1316import PlatformIOCoreStage from './installer/stages/platformio-core' ;
1417import ProjectIndexer from './project/indexer' ;
1518import ProjectObserver from './project/observer' ;
16- import ProjectTasks from './project/tasks' ;
1719
1820const installer = {
1921 BaseStage,
@@ -23,7 +25,8 @@ const installer = {
2325const project = {
2426 ProjectIndexer,
2527 ProjectObserver,
26- ProjectTasks
28+ ProjectTasks,
29+ TaskItem
2730} ;
2831
2932export {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import fs from 'fs-plus';
1010import ini from 'ini' ;
1111import path from 'path' ;
1212
13- export default class ProjectTasks {
13+ export class ProjectTasks {
1414
1515 static ENV_NAME_PREFIX = 'env:' ;
1616
@@ -133,7 +133,7 @@ export default class ProjectTasks {
133133}
134134
135135
136- class TaskItem {
136+ export class TaskItem {
137137
138138 constructor ( name , description , args ) {
139139 this . name = name ;
You can’t perform that action at this time.
0 commit comments