Revision 2d14724965e085f00c37c2f8779f5f4f107790f2 authored by alkavats1 on 05 January 2022, 20:36:10 UTC, committed by Andrew Scott on 05 January 2022, 23:21:10 UTC
fix the url link format from http to https in i18-common-locale-id.md file

PR Close #44638
1 parent e39f804
Raw File
BUILD.bazel
load("//tools:defaults.bzl", "nodejs_binary", "ts_config")

package(default_visibility = ["//visibility:public"])

exports_files([
    "tsconfig.json",
    "postinstall-patches.js",
    "jasmine-seed-generator.js",
])

ts_config(
    name = "tsconfig-test",
    src = "tsconfig-test.json",
    deps = ["tsconfig.json"],
)

nodejs_binary(
    name = "inline-package-json-deps",
    entry_point = "inline-package-json-deps.js",
)

platform(
    name = "rbe_ubuntu1604-angular",
    parents = ["@rbe_ubuntu1604_angular//config:platform"],
    remote_execution_properties = """
        {PARENT_REMOTE_EXECUTION_PROPERTIES}
        properties: {
            name: "dockerAddCapabilities"
            value: "SYS_ADMIN"
        }
        properties: {
            name: "dockerNetwork"
            value: "standard"
        }
        properties: {
            name: "Pool"
            value: "default"
        }
        """,
)
back to top