-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathbootstrap.ts
19 lines (15 loc) · 948 Bytes
/
bootstrap.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require("./common/bootstrap");
$injector.require("nativescript-cli", "./nativescript-cli");
$injector.require("projectService", "./services/project-service");
$injector.require("androidProjectService", "./services/project-service");
$injector.require("iOSProjectService", "./services/project-service");
$injector.require("projectTemplatesService", "./services/project-templates-service");
$injector.require("platformService", "./services/platform-service");
$injector.requireCommand("create", "./commands/create-project");
$injector.requireCommand("platform|*list", "./commands/list-platforms");
$injector.requireCommand("platform|add", "./commands/add-platform");
$injector.requireCommand("run", "./commands/run");
$injector.requireCommand("prepare", "./commands/prepare");
$injector.requireCommand("build", "./commands/build");
$injector.require("npm", "./node-package-manager");
$injector.require("propertiesParser", "./properties-parser");