Skip to content

Commit cb8a741

Browse files
alan-agius4alxhub
authored andcommitted
docs: update SSR doc to reflect version 17 (angular#52398)
Changes to SSR doc PR Close angular#52398
1 parent f1a020b commit cb8a741

File tree

107 files changed

+415
-2686
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+415
-2686
lines changed

.pullapprove.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -520,10 +520,8 @@ groups:
520520
contains_any_globs(files, [
521521
'packages/platform-server/**/{*,.*}',
522522
'aio/content/guide/prerendering.md',
523-
'aio/content/guide/universal.md',
524-
'aio/content/examples/universal/**/{*,.*}',
525-
'aio/content/guide/universal-ngmodule.md',
526-
'aio/content/examples/universal-ngmodule/**/{*,.*}'
523+
'aio/content/guide/ssr.md',
524+
'aio/content/examples/ssr/**/{*,.*}',
527525
])
528526
reviewers:
529527
users:

README.md

Lines changed: 1 addition & 1 deletion

aio/content/errors/NG0912.md

Lines changed: 3 additions & 3 deletions

aio/content/examples/examples.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ EXAMPLES = {
103103
"toh-pt5": {"stackblitz": True, "zip": True},
104104
"toh-pt6": {"stackblitz": True, "zip": True},
105105
"two-way-binding": {"stackblitz": True, "zip": True},
106-
"universal": {"stackblitz": False, "zip": True},
107-
"universal-ngmodule": {"stackblitz": False, "zip": True},
106+
"ssr": {"stackblitz": False, "zip": True},
108107
"upgrade-lazy-load-ajs": {"stackblitz": False, "zip": True},
109108
"upgrade-module": {"stackblitz": False, "zip": False},
110109
"upgrade-phonecat-1-typescript": {"stackblitz": False, "zip": False},

aio/content/examples/universal-ngmodule/BUILD.bazel renamed to aio/content/examples/ssr/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ load("//aio/content/examples:examples.bzl", "docs_example")
33
package(default_visibility = ["//visibility:public"])
44

55
docs_example(
6-
name = "universal",
6+
name = "ssr",
77
)

aio/content/examples/universal/doc-files/app/app.component.ts renamed to aio/content/examples/ssr/doc-files/app/app.component.ts

File renamed without changes.
File renamed without changes.

aio/content/examples/universal-ngmodule/e2e/src/app.e2e-spec.ts renamed to aio/content/examples/ssr/e2e/src/app.e2e-spec.ts

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"projectType": "universal",
2+
"projectType": "ssr",
33
"e2e": [
44
{"cmd": "yarn", "args": ["e2e", "--configuration=production", "--protractor-config=e2e/protractor-bazel.conf.js", "--no-webdriver-update", "--port=0"]},
5-
{"cmd": "yarn", "args": ["run", "build:ssr"]}
5+
{"cmd": "yarn", "args": ["build"]}
66
]
77
}

aio/content/examples/ssr/readme.md

Lines changed: 9 additions & 0 deletions

0 commit comments

Comments
 (0)