/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v21.2.20
tools/defaults.bzl
83 строки
3 KB
Alan Agius
build: update `aspect_rules_js` to `3.0.2`
09 мар 2026, 18:04
09 мар 2026, 18:04
3af71f9
Код
Авторство
О чём код?
load("@aspect_rules_jasmine//jasmine:defs.bzl", _jasmine_test = "jasmine_test") load("@aspect_rules_js//js:defs.bzl", _js_binary = "js_binary") load("@bazel_lib//lib:copy_to_bin.bzl", _copy_to_bin = "copy_to_bin") load("@devinfra//bazel/ts_project:index.bzl", "strict_deps_test") load("@rules_angular//src/ng_examples_db:index.bzl", _ng_examples_db = "ng_examples_db") load("@rules_angular//src/ng_package:index.bzl", _ng_package = "ng_package") load("@rules_angular//src/ts_project:index.bzl", _ts_project = "ts_project") load("//tools:substitutions.bzl", "substitutions") load("//tools/bazel:npm_package.bzl", _npm_package = "npm_package") def ts_project( name, deps = [], tsconfig = None, testonly = False, source_map = True, visibility = None, **kwargs): if tsconfig == None: tsconfig = "//:test-tsconfig" if testonly else "//:build-tsconfig" _ts_project( name = name, testonly = testonly, declaration = True, source_map = source_map, tsconfig = tsconfig, visibility = visibility, deps = deps, **kwargs ) strict_deps_test( name = "%s_strict_deps_test" % name, srcs = kwargs.get("srcs", []), tsconfig = tsconfig, deps = deps, ) def npm_package(**kwargs): _npm_package(**kwargs) def copy_to_bin(**kwargs): _copy_to_bin(**kwargs) def js_binary(**kwargs): _js_binary(**kwargs) def ng_package(deps = [], extra_substitutions = {}, **kwargs): nostamp_subs = dict(substitutions["nostamp"], **extra_substitutions) stamp_subs = dict(substitutions["stamp"], **extra_substitutions) _ng_package( deps = deps, license = "//:LICENSE", substitutions = select({ "//:stamp": stamp_subs, "//conditions:default": nostamp_subs, }), **kwargs ) def jasmine_test(data = [], args = [], **kwargs): # Create relative path to root, from current package dir. Necessary as # we change the `chdir` below to the package directory. relative_to_root = "/".join([".."] * len(native.package_name().split("/"))) _jasmine_test( node_modules = "//:node_modules", chdir = native.package_name(), args = [ "--require=%s/node_modules/source-map-support/register.js" % relative_to_root, # Escape so that the `js_binary` launcher triggers Bash expansion. "'**/*+(.|_)spec.js'", "'**/*+(.|_)spec.mjs'", "'**/*+(.|_)spec.cjs'", ] + args, data = data + ["//:node_modules/source-map-support"], **kwargs ) def ng_examples_db(**kwargs): _ng_examples_db(**kwargs)