Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions packages/angular/ssr/schematics/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.dev/license

load("@aspect_rules_js//js:defs.bzl", "js_library")
load("//tools:defaults.bzl", "jasmine_test", "ts_project")
load("//tools:defaults.bzl", "jasmine_test", "npm_package", "ts_project")
load("//tools:ts_json_schema.bzl", "ts_json_schema")

licenses(["notice"])
Expand Down Expand Up @@ -90,13 +89,13 @@ jasmine_test(
],
)

# This target is used as nested_package in the main @angular/ssr package as a dep.
js_library(
# This package is intended to be combined into the main @angular/ssr package as a dep.
npm_package(
name = "pkg",
srcs = [
visibility = ["//packages/angular/ssr:__pkg__"],
deps = [
"package.json",
":schematics",
":schematics_assets",
],
visibility = ["//packages/angular/ssr:__pkg__"],
)
Loading