mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
93 lines
2.5 KiB
Text
93 lines
2.5 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`manager/bazel/update updateDependency updates commit to tag 1`] = `
|
|
"
|
|
workspace(name = \\"angular_bazel_example\\")
|
|
|
|
go_repository(
|
|
name = \\"com_github_bitly_go-nsq\\",
|
|
importpath = \\"github.com/bitly/go-nsq\\",
|
|
tag = \\"v1.0.5\\"
|
|
)
|
|
|
|
go_repository(
|
|
name = \\"com_github_google_uuid\\",
|
|
importpath = \\"github.com/google/uuid\\",
|
|
tag = \\"v1.0.3\\"
|
|
)
|
|
|
|
go_repository(
|
|
name = \\"com_gopkgin_mgo_v2\\",
|
|
importpath = \\"gopkg.in/mgo.v2\\",
|
|
tag = \\"v2\\"
|
|
)
|
|
|
|
git_repository(
|
|
name = \\"build_bazel_rules_nodejs\\",
|
|
remote = \\"https://github.com/bazelbuild/rules_nodejs.git\\",
|
|
tag = \\"0.3.1\\",
|
|
)
|
|
|
|
load(\\"@build_bazel_rules_nodejs//:defs.bzl\\", \\"node_repositories\\")
|
|
node_repositories(package_json = [\\"//:package.json\\"])
|
|
|
|
git_repository(
|
|
name = \\"build_bazel_rules_typescript\\",
|
|
remote = \\"https://github.com/bazelbuild/rules_typescript.git\\",
|
|
tag = \\"0.6.1\\",
|
|
)
|
|
|
|
load(\\"@build_bazel_rules_typescript//:defs.bzl\\", \\"ts_repositories\\")
|
|
|
|
ts_repositories()
|
|
|
|
local_repository(
|
|
name = \\"angular\\",
|
|
path = \\"node_modules/@angular/bazel\\",
|
|
)
|
|
|
|
local_repository(
|
|
name = \\"rxjs\\",
|
|
path = \\"node_modules/rxjs/src\\",
|
|
)
|
|
|
|
git_repository(
|
|
name = \\"io_bazel_rules_sass\\",
|
|
remote = \\"https://github.com/bazelbuild/rules_sass.git\\",
|
|
tag = \\"0.0.3\\",
|
|
)
|
|
|
|
load(\\"@io_bazel_rules_sass//sass:sass.bzl\\", \\"sass_repositories\\")
|
|
|
|
sass_repositories()
|
|
|
|
git_repository(
|
|
name = \\"com_github_bazelbuild_buildtools\\",
|
|
remote = \\"https://github.com/bazelbuild/buildtools.git\\",
|
|
# Note, this commit matches the version of buildifier in angular/ngcontainer
|
|
commit = \\"b3b620e8bcff18ed3378cd3f35ebeb7016d71f71\\",
|
|
)
|
|
|
|
http_archive(
|
|
name = \\"io_bazel_rules_go\\",
|
|
url = \\"https://github.com/bazelbuild/rules_go/releases/download/0.7.1/rules_go-0.7.1.tar.gz\\",
|
|
sha256 = \\"341d5eacef704415386974bc82a1783a8b7ffbff2ab6ba02375e1ca20d9b031c\\",
|
|
)
|
|
|
|
http_archive(
|
|
name = \\"bazel_skylib\\",
|
|
sha256 = \\"b5f6abe419da897b7901f90cbab08af958b97a8f3575b0d3dd062ac7ce78541f\\",
|
|
strip_prefix = \\"bazel-skylib-0.5.0\\",
|
|
urls = [
|
|
\\"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/archive/0.5.0.tar.gz\\",
|
|
\\"https://github.com/bazelbuild/bazel-skylib/archive/0.5.0.tar.gz\\",
|
|
],
|
|
)
|
|
|
|
load(\\"@io_bazel_rules_go//go:def.bzl\\", \\"go_rules_dependencies\\", \\"go_register_toolchains\\")
|
|
|
|
go_rules_dependencies()
|
|
|
|
go_register_toolchains()
|
|
"
|
|
`;
|