workspace(name = "bazel_integration_test") load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") # Using a pre-release snapshot to pick up a commit that makes all nodejs_binary # programs produce source-mapped stack traces. RULES_NODEJS_VERSION = "926349cea4cd360afcd5647ccdd09d2d2fb471aa" http_archive( name = "build_bazel_rules_nodejs", url = "https://github.com/bazelbuild/rules_nodejs/archive/%s.zip" % RULES_NODEJS_VERSION, strip_prefix = "rules_nodejs-%s" % RULES_NODEJS_VERSION, sha256 = "5ba3c8c209078c2e3f0c6aa4abd01a1a561f92a5bfda04e25604af5f4734d69d", ) load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories") node_repositories(package_json = ["//:package.json"]) RULES_TYPESCRIPT_VERSION = "d3cc5cd72d89aee0e4c2553ae1b99c707ecbef4e" http_archive( name = "build_bazel_rules_typescript", url = "https://github.com/bazelbuild/rules_typescript/archive/%s.zip" % RULES_TYPESCRIPT_VERSION, strip_prefix = "rules_typescript-%s" % RULES_TYPESCRIPT_VERSION, sha256 = "a233fcca41c3e59f639ac71c396edb30e9e9716cf8ed5fb20b51ff8910d5d895", ) load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace") ts_setup_workspace() local_repository( name = "angular", path = "node_modules/@angular/bazel", ) local_repository( name = "rxjs", path = "node_modules/rxjs/src", ) http_archive( name = "io_bazel_rules_sass", url = "https://github.com/bazelbuild/rules_sass/archive/0.0.3.zip", strip_prefix = "rules_sass-0.0.3", sha256 = "8fa98e7b48a5837c286a1ea254b5a5c592fced819ee9fe4fdd759768d97be868", ) load("@io_bazel_rules_sass//sass:sass.bzl", "sass_repositories") sass_repositories()