Skip to content

Commit 68b9f32

Browse files
authored
feat: remove references to deprecated runtime builder (#136)
1 parent ee790f1 commit 68b9f32

12 files changed

+11
-119
lines changed

src/app/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ ng_project(
3030
"//src/app/docs/ecs",
3131
"//src/app/docs/implementations",
3232
"//src/app/docs/runtime",
33-
"//src/app/docs/runtime-builder",
3433
"//src/app/home",
3534
"//src/app/install",
3635
"//src/app/integrations/unity/install",

src/app/docs/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ ng_project(
2626
"//src/app/docs/lang",
2727
"//src/app/docs/overview",
2828
"//src/app/docs/runtime",
29-
"//src/app/docs/runtime-builder",
3029
"//src/app/docs/system-execution",
3130
"//src/app/docs/system-impl",
3231
"//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
@@ -44,13 +44,6 @@ const routes: Routes = [
4444
m => m.RuntimeRoutingModule,
4545
),
4646
},
47-
{
48-
path: 'runtime-builder',
49-
loadChildren: () =>
50-
import('./runtime-builder/runtime-builder-routing.module').then(
51-
m => m.Runtime_BuilderRoutingModule,
52-
),
53-
},
5447
{
5548
path: 'runtime-implementations',
5649
loadChildren: () =>

src/app/docs/docs.component.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
</ecsact-sidenav-section>
1414
<ecsact-sidenav-section title="Runtime">
1515
<a routerLink="/docs/runtime" routerLinkActive="active">Runtime Library</a>
16-
<a routerLink="/docs/runtime-builder" routerLinkActive="active"
17-
>Runtime Builder</a
18-
>
1916
<a routerLink="/docs/runtime-implementations" routerLinkActive="active"
2017
>Implementations</a
2118
>

src/app/docs/implementations/implementations.component.html

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@ <h1>Runtime Implementations</h1>
66
implementation must comply with. Which is to say that each implementation
77
<em>behaves</em> the same, but may <em>perform</em> different in terms of
88
execution speed and/or storage size. An implementation may even be tailored
9-
to a set of ecsact files. For example, the
10-
<a routerLink="/docs/runtime-builder">Ecsact Runtime Builder (RTB)</a> is a
11-
utility for creating tailored runtimes for
12-
<a [routerLink]="[]" fragment="generic-implementations"
13-
>generic implementations</a
14-
>.
9+
to a set of ecsact files.
1510
</p>
1611

1712
<h2 id="building-an-implementation">Building an Implementation</h2>
@@ -50,10 +45,8 @@ <h2 id="known-implementations">Known Implementations</h2>
5045
<a [routerLink]="[]" fragment="runtime-config-generic"
5146
>generic implementation</a
5247
>
53-
maintained by the Ecsact Dev Team and available as one of the
54-
implementations in the
55-
<a routerLink="/docs/runtime-builder">Ecsact Runtime Builder (RTB)</a>.
56-
Built with the excellent library
48+
maintained by the Ecsact Dev Team. Built with the <em>excellent</em> and
49+
well known library
5750
<a target="_blank" href="https://github.com/skypjack/entt"
5851
><span class="i24">open_in_new</span> EnTT</a
5952
>.

src/app/docs/runtime-builder/BUILD.bazel

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

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

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

src/app/docs/runtime-builder/runtime-builder.component.html

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

src/app/docs/runtime-builder/runtime-builder.component.scss

Whitespace-only changes.

src/app/docs/runtime-builder/runtime-builder.component.ts

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

0 commit comments

Comments
 (0)