2017-12-06 09:56:49 -05:00
|
|
|
workspace(name = "bazel_integration_test")
|
|
|
|
|
2018-02-09 13:22:00 -05:00
|
|
|
http_archive(
|
2017-08-22 19:56:29 -04:00
|
|
|
name = "build_bazel_rules_nodejs",
|
2018-02-09 13:22:00 -05:00
|
|
|
url = "https://github.com/bazelbuild/rules_nodejs/archive/0.4.1.zip",
|
|
|
|
strip_prefix = "rules_nodejs-0.4.1",
|
|
|
|
sha256 = "e9bc013417272b17f302dc169ad597f05561bb277451f010043f4da493417607",
|
2017-08-22 19:56:29 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
|
|
|
|
node_repositories(package_json = ["//:package.json"])
|
|
|
|
|
2018-02-09 13:22:00 -05:00
|
|
|
http_archive(
|
2017-08-21 11:23:47 -04:00
|
|
|
name = "build_bazel_rules_typescript",
|
2018-02-09 13:22:00 -05:00
|
|
|
url = "https://github.com/bazelbuild/rules_typescript/archive/0.10.1.zip",
|
|
|
|
strip_prefix = "rules_typescript-0.10.1",
|
|
|
|
sha256 = "a2c81776a4a492ff9f878f9705639f5647bef345f7f3e1da09c9eeb8dec80485",
|
2017-08-21 11:23:47 -04:00
|
|
|
)
|
|
|
|
|
2018-01-17 17:49:08 -05:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2017-12-22 12:36:47 -05:00
|
|
|
ts_setup_workspace()
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2017-08-21 11:23:47 -04:00
|
|
|
local_repository(
|
|
|
|
name = "angular",
|
2017-08-22 19:56:29 -04:00
|
|
|
path = "node_modules/@angular/bazel",
|
2017-08-21 11:23:47 -04:00
|
|
|
)
|
2017-09-26 12:44:47 -04:00
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
local_repository(
|
|
|
|
name = "rxjs",
|
|
|
|
path = "node_modules/rxjs/src",
|
|
|
|
)
|
|
|
|
|
2017-09-26 12:44:47 -04:00
|
|
|
git_repository(
|
|
|
|
name = "io_bazel_rules_sass",
|
|
|
|
remote = "https://github.com/bazelbuild/rules_sass.git",
|
2017-12-05 14:36:08 -05:00
|
|
|
tag = "0.0.3",
|
2017-09-26 12:44:47 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
load("@io_bazel_rules_sass//sass:sass.bzl", "sass_repositories")
|
|
|
|
|
|
|
|
sass_repositories()
|