开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

logbug/angular

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (65)
标签 (628)
master
cindygk-patch-2
11.2.x
g3
10.2.x
gkalpak-patch-1
aikidave-patch-1-1
aikidave-patch-1
ngtsc/semantic-updates
11.1.x
elements-typo-fix
ayazhafiz-paka
11.0.x
9.1.x
evans-change
watch-burn-rates
8.2.x
use-workspaces
10.1.x
windows-executor-no-cache
12.0.0-next.5
11.2.6
12.0.0-next.4
11.2.5
12.0.0-next.3
11.2.4
12.0.0-next.2
11.2.3
11.2.2
12.0.0-next.1
11.2.1
zone.js-0.11.4
12.0.0-next.0
11.2.0
11.2.0-rc.0
11.2.0-next.1
11.1.2
11.2.0-next.0
11.1.1
11.1.0
master
分支 (65)
标签 (628)
master
cindygk-patch-2
11.2.x
g3
10.2.x
gkalpak-patch-1
aikidave-patch-1-1
aikidave-patch-1
ngtsc/semantic-updates
11.1.x
elements-typo-fix
ayazhafiz-paka
11.0.x
9.1.x
evans-change
watch-burn-rates
8.2.x
use-workspaces
10.1.x
windows-executor-no-cache
12.0.0-next.5
11.2.6
12.0.0-next.4
11.2.5
12.0.0-next.3
11.2.4
12.0.0-next.2
11.2.3
11.2.2
12.0.0-next.1
11.2.1
zone.js-0.11.4
12.0.0-next.0
11.2.0
11.2.0-rc.0
11.2.0-next.1
11.1.2
11.2.0-next.0
11.1.1
11.1.0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (65)
标签 (628)
master
cindygk-patch-2
11.2.x
g3
10.2.x
gkalpak-patch-1
aikidave-patch-1-1
aikidave-patch-1
ngtsc/semantic-updates
11.1.x
elements-typo-fix
ayazhafiz-paka
11.0.x
9.1.x
evans-change
watch-burn-rates
8.2.x
use-workspaces
10.1.x
windows-executor-no-cache
12.0.0-next.5
11.2.6
12.0.0-next.4
11.2.5
12.0.0-next.3
11.2.4
12.0.0-next.2
11.2.3
11.2.2
12.0.0-next.1
11.2.1
zone.js-0.11.4
12.0.0-next.0
11.2.0
11.2.0-rc.0
11.2.0-next.1
11.1.2
11.2.0-next.0
11.1.1
11.1.0
angular
/
WORKSPACE
angular
/
WORKSPACE
WORKSPACE 3.39 KB
一键复制 编辑 原始数据 按行查看 历史
Joey Perrott 提交于 2021年02月24日 06:38 +08:00 . build: update to rules_nodejs@3.2.1 (#40972)
workspace(
name = "angular",
managed_directories = {"@npm": ["node_modules"]},
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Fetch rules_nodejs so we can install our npm dependencies
http_archive(
name = "build_bazel_rules_nodejs",
sha256 = "bfacf15161d96a6a39510e7b3d3b522cf61cb8b82a31e79400a84c5abcab5347",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.2.1/rules_nodejs-3.2.1.tar.gz"],
)
# Check the rules_nodejs version and download npm dependencies
# Note: bazel (version 2 and after) will check the .bazelversion file so we don't need to
# assert on that.
load("@build_bazel_rules_nodejs//:index.bzl", "check_rules_nodejs_version", "node_repositories", "yarn_install")
check_rules_nodejs_version(minimum_version_string = "2.2.0")
# Setup the Node.js toolchain
node_repositories(
node_version = "12.14.1",
package_json = ["//:package.json"],
)
load("//integration:angular_integration_test.bzl", "npm_package_archives")
yarn_install(
name = "npm",
manual_build_file_contents = npm_package_archives(),
package_json = "//:package.json",
yarn_lock = "//:yarn.lock",
)
# Load angular dependencies
load("//packages/bazel:package.bzl", "rules_angular_dev_dependencies")
rules_angular_dev_dependencies()
# Load protractor dependencies
load("@npm//@bazel/protractor:package.bzl", "npm_bazel_protractor_dependencies")
npm_bazel_protractor_dependencies()
# Setup the rules_webtesting toolchain
load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories")
web_test_repositories()
load("//dev-infra/browsers:browser_repositories.bzl", "browser_repositories")
browser_repositories()
# Setup the rules_sass toolchain
load("@io_bazel_rules_sass//:defs.bzl", "sass_repositories")
sass_repositories()
# Setup the skydoc toolchain
load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
skydoc_repositories()
load("@bazel_toolchains//rules:environments.bzl", "clang_env")
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
rbe_autoconfig(
name = "rbe_ubuntu1604_angular",
# Need to specify a base container digest in order to ensure that we can use the checked-in
# platform configurations for the "ubuntu16_04" image. Otherwise the autoconfig rule would
# need to pull the image and run it in order determine the toolchain configuration. See:
# https://github.com/bazelbuild/bazel-toolchains/blob/4.0.0/configs/ubuntu16_04_clang/versions.bzl
base_container_digest = "sha256:f6568d8168b14aafd1b707019927a63c2d37113a03bcee188218f99bd0327ea1",
# Note that if you change the `digest`, you might also need to update the
# `base_container_digest` to make sure marketplace.gcr.io/google/rbe-ubuntu16-04-webtest:<digest>
# and marketplace.gcr.io/google/rbe-ubuntu16-04:<base_container_digest> have
# the same Clang and JDK installed. Clang is needed because of the dependency on
# @com_google_protobuf. Java is needed for the Bazel's test executor Java tool.
digest = "sha256:dddaaddbe07a61c2517f9b08c4977fc23c4968fcb6c0b8b5971e955d2de7a961",
env = clang_env(),
registry = "marketplace.gcr.io",
# We can't use the default "ubuntu16_04" RBE image provided by the autoconfig because we need
# a specific Linux kernel that comes with "libx11" in order to run headless browser tests.
repository = "google/rbe-ubuntu16-04-webtest",
use_checked_in_confs = "Force",
)
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/logbug/angular.git
git@gitee.com:logbug/angular.git
logbug
angular
angular
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /