angular/packages/ssr/BUILD.bazel
Andrew Kushnir a55341b1ab refactor(core): add REQUEST, RESPONSE_INIT and REQUEST_CONTEXT tokens (#58669)
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
2024-11-14 14:21:21 -08:00

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",
)