angular-cli/tools/BUILD.bazel
Alan Agius 3fe432c71b refactor: update code to integrate universal repo
This commit updates the moved universal code into the cli pipeline
2023-08-22 20:44:53 +00:00

32 lines
770 B
Python

# Copyright Google Inc. All Rights Reserved.
#
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.io/license
# @external_begin
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
package(default_visibility = ["//visibility:public"])
exports_files([
"package_json_release_filter.jq",
])
nodejs_binary(
name = "ng_cli_schema",
data = [
"ng_cli_schema_generator.js",
],
entry_point = "ng_cli_schema_generator.js",
)
nodejs_binary(
name = "quicktype_runner",
data = [
"quicktype_runner.js",
"@npm//quicktype-core",
],
entry_point = "quicktype_runner.js",
templated_args = ["--bazel_patch_module_resolver"],
)
# @external_end