Skip to content

Commit afd1757

Browse files
Kelwanzaucy
authored andcommitted
Initial commit, moved things around and deleted unneeded contents (#53)
1 parent e52b9ae commit afd1757

28 files changed

+138
-349
lines changed

src/app/BUILD.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ ng_ts_project(
2121
"//src/app/docs/implementations",
2222
"//src/app/docs/runtime",
2323
"//src/app/docs/runtime-builder",
24-
"//src/app/docs/setup",
2524
"//src/app/home",
2625
"//src/app/install",
2726
"//src/app/integrations/unity/install",
2827
"//src/app/introduction",
2928
"//src/app/reference",
29+
"//src/app/roadmap",
3030
"//src/app/start",
31-
"//src/app/tutorials",
3231
"//src/components/search",
3332
"//src/search:meta-service",
3433
"@npm//@angular/common",

src/app/app-routing.module.ts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,6 @@ const routes: Routes = [
3838
m => m.IntroductionRoutingModule,
3939
),
4040
},
41-
{
42-
path: 'tutorials',
43-
pathMatch: 'prefix',
44-
loadChildren: () =>
45-
import('./tutorials/tutorials-routing.module').then(
46-
m => m.TutorialsRoutingModule,
47-
),
48-
},
4941
{
5042
path: 'integrations/unity/install',
5143
loadChildren: () =>
@@ -66,16 +58,12 @@ const routes: Routes = [
6658
import('./docs/ecs/ecs-routing.module').then(m => m.EcsRoutingModule),
6759
},
6860
{
69-
path: 'docs/setup',
61+
path: 'roadmap',
7062
loadChildren: () =>
71-
import('./docs/setup/setup-routing.module').then(
72-
m => m.SetupRoutingModule,
63+
import('./roadmap/reference-routing.module').then(
64+
m => m.RoadmapRoutingModule,
7365
),
7466
},
75-
// {
76-
// path: '**',
77-
// redirectTo: '/',
78-
// },
7967
];
8068

8169
@NgModule({

src/app/app.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<a routerLink="/reference" routerLinkActive="active" class="text-black">
1414
<span>Reference</span>
1515
</a>
16-
<a routerLink="/tutorials" routerLinkActive="active" class="text-black">
17-
<span>Tutorials</span>
16+
<a routerLink="/roadmap" routerLinkActive="active" class="text-black">
17+
<span>Roadmap</span>
1818
</a>
1919
</div>
2020
<div class="search-flex"></div>

src/app/docs/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ ng_ts_project(
2323
"//src/app/docs/overview",
2424
"//src/app/docs/runtime",
2525
"//src/app/docs/runtime-builder",
26-
"//src/app/docs/setup",
2726
"//src/app/docs/system-execution",
2827
"//src/app/docs/system-impl",
2928
"//src/app/docs/system-impl-wasm",

src/app/docs/docs-routing.module.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,6 @@ const routes: Routes = [
6565
loadChildren: () =>
6666
import('./ecs/ecs-routing.module').then(m => m.EcsRoutingModule),
6767
},
68-
{
69-
path: 'setup',
70-
loadChildren: () =>
71-
import('./setup/setup-routing.module').then(
72-
m => m.SetupRoutingModule,
73-
),
74-
},
7568
{
7669
path: 'unity/defaults',
7770
loadChildren: () =>

src/app/docs/docs.component.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<ecsact-sidenav-section title="Basics">
1111
<a routerLink="/docs/ecs" routerLinkActive="active">What is ECS?</a>
1212
<a routerLink="/docs/lang" routerLinkActive="active">Language</a>
13-
<a routerLink="/docs/setup" routerLinkActive="active">Setup</a>
1413
</ecsact-sidenav-section>
1514
<ecsact-sidenav-section title="Runtime">
1615
<a routerLink="/docs/runtime" routerLinkActive="active">Runtime Library</a>

src/app/docs/setup/setup.component.html

Lines changed: 0 additions & 246 deletions
This file was deleted.

src/app/docs/setup/setup.component.scss

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/app/docs/setup/setup.component.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/app/docs/setup/setup.module.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)