mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-28 11:10:12 +08:00
32 lines
770 B
Python
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
|