mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit introduces the `REQUEST`, `RESPONSE_INIT` and `REQUEST_CONTEXT` tokens, which will replace similar ones from 2850318623/packages/angular/ssr/tokens/src/tokens.ts, so those tokens would be imported in application code via `@angular/core` package.
PR Close #58669
24 lines
677 B
Text
24 lines
677 B
Text
load("//tools:defaults.bzl", "generate_api_docs")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
### @angular/ssr package located in the Angular/CLI repository
|
|
generate_api_docs(
|
|
name = "ssr_docs",
|
|
srcs = [
|
|
"//packages:common_files_and_deps_for_docs",
|
|
"@npm//@angular/ssr",
|
|
],
|
|
entry_point = "@npm//:node_modules/@angular/ssr/index.d.ts",
|
|
module_name = "@angular/ssr",
|
|
)
|
|
|
|
generate_api_docs(
|
|
name = "ssr_node_docs",
|
|
srcs = [
|
|
"//packages:common_files_and_deps_for_docs",
|
|
"@npm//@angular/ssr",
|
|
],
|
|
entry_point = "@npm//:node_modules/@angular/ssr/node/index.d.ts",
|
|
module_name = "@angular/ssr/node",
|
|
)
|