-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
16 lines (16 loc) · 973 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RunSchematicTask = exports.RepositoryInitializerTask = exports.NodePackageInstallTask = void 0;
var install_task_1 = require("./package-manager/install-task");
Object.defineProperty(exports, "NodePackageInstallTask", { enumerable: true, get: function () { return install_task_1.NodePackageInstallTask; } });
var init_task_1 = require("./repo-init/init-task");
Object.defineProperty(exports, "RepositoryInitializerTask", { enumerable: true, get: function () { return init_task_1.RepositoryInitializerTask; } });
var task_1 = require("./run-schematic/task");
Object.defineProperty(exports, "RunSchematicTask", { enumerable: true, get: function () { return task_1.RunSchematicTask; } });