We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9076040 commit c5bcf5cCopy full SHA for c5bcf5c
src/tasks/index.ts
@@ -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