Skip to content

Commit c5bcf5c

Browse files
author
Ovidiu Barabula
committed
refactor(core): create single tasks module to export all other tasks
1 parent 9076040 commit c5bcf5c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/tasks/index.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Name: index.ts
3+
* Description: Import all tasks and export as single tasks array
4+
* Author: Ovidiu Barabula <lectii2008@gmail.com>
5+
* @since 1.1.0
6+
*/
7+
8+
import { PluginProvider } from '../plugin-manager/installable';
9+
import taskInitProject from './task-init-project';
10+
import taskInstallDeps from './task-install-dependencies';
11+
12+
const tasks = [
13+
taskInitProject,
14+
taskInstallDeps,
15+
];
16+
17+
export default tasks;

0 commit comments

Comments
 (0)