build: migrate @angular/create to ts_project

The `@angular/create` package has been migrated to the `rules_js` ts_project rule.
This commit is contained in:
Charles Lyding 2024-12-23 08:02:03 -05:00 committed by Charles
parent dfe9c6a3cc
commit 5f04d68633

View File

@ -3,17 +3,18 @@
# 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("//tools:defaults.bzl", "pkg_npm", "ts_library")
load("//tools:defaults.bzl", "pkg_npm")
load("//tools:interop.bzl", "ts_project")
licenses(["notice"])
ts_library(
ts_project(
name = "create",
package_name = "@angular/create",
srcs = ["src/index.ts"],
module_name = "@angular/create",
deps = [
"//:root_modules/@types/node",
"//packages/angular/cli:angular-cli",
"@npm//@types/node",
],
)