BREAKING CHANGES:
Bazel users: rules_angular_dependencies() will no longer install transitive dependencies of build_bazel_rules_nodejs and build_bazel_rules_typescript. User WORKSPACE files will now need to install rules_nodejs and rules_typescript transitive deps directly:
```
load("@build_bazel_rules_typescript//:package.bzl", "rules_typescript_dependencies")
rules_typescript_dependencies()
load("@build_bazel_rules_nodejs//:package.bzl", "rules_nodejs_dependencies")
rules_nodejs_dependencies()
```
PR Close #27264
		
	
			
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| workspace(name = "angular")
 | |
| 
 | |
| load(
 | |
|     "//packages/bazel:package.bzl",
 | |
|     "rules_angular_dependencies",
 | |
|     "rules_angular_dev_dependencies",
 | |
| )
 | |
| 
 | |
| # Uncomment for local bazel rules development
 | |
| #local_repository(
 | |
| #    name = "build_bazel_rules_nodejs",
 | |
| #    path = "../rules_nodejs",
 | |
| #)
 | |
| #local_repository(
 | |
| #    name = "build_bazel_rules_typescript",
 | |
| #    path = "../rules_typescript",
 | |
| #)
 | |
| 
 | |
| # Angular Bazel users will call this function
 | |
| rules_angular_dependencies()
 | |
| # These are the dependencies only for us
 | |
| rules_angular_dev_dependencies()
 | |
| 
 | |
| # Install transitive deps of rules_typescript
 | |
| load("@build_bazel_rules_typescript//:package.bzl", "rules_typescript_dependencies")
 | |
| rules_typescript_dependencies()
 | |
| 
 | |
| # Install transitive deps of rules_nodejs
 | |
| load("@build_bazel_rules_nodejs//:package.bzl", "rules_nodejs_dependencies")
 | |
| rules_nodejs_dependencies()
 | |
| 
 | |
| #
 | |
| # Point Bazel to WORKSPACEs that live in subdirectories
 | |
| #
 | |
| http_archive(
 | |
|     name = "rxjs",
 | |
|     url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz",
 | |
|     strip_prefix = "package/src",
 | |
|     sha256 = "72b0b4e517f43358f554c125e40e39f67688cd2738a8998b4a266981ed32f403",
 | |
| )
 | |
| 
 | |
| # Point to the integration test workspace just so that Bazel doesn't descend into it
 | |
| # when expanding the //... pattern
 | |
| local_repository(
 | |
|     name = "bazel_integration_test",
 | |
|     path = "integration/bazel",
 | |
| )
 | |
| 
 | |
| #
 | |
| # Load and install our dependencies downloaded above.
 | |
| #
 | |
| load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories", "yarn_install")
 | |
| 
 | |
| check_bazel_version("0.18.0", """
 | |
| If you are on a Mac and using Homebrew, there is a breaking change to the installation in Bazel 0.16
 | |
| See https://blog.bazel.build/2018/08/22/bazel-homebrew.html
 | |
| 
 | |
| """)
 | |
| 
 | |
| node_repositories(
 | |
|     node_version = "10.9.0",
 | |
|     package_json = ["//:package.json"],
 | |
|     preserve_symlinks = True,
 | |
|     yarn_version = "1.12.1",
 | |
| )
 | |
| 
 | |
| yarn_install(
 | |
|     name = "npm",
 | |
|     package_json = "//tools:npm/package.json",
 | |
|     yarn_lock = "//tools:npm/yarn.lock",
 | |
| )
 | |
| 
 | |
| load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
 | |
| 
 | |
| go_rules_dependencies()
 | |
| 
 | |
| go_register_toolchains()
 | |
| 
 | |
| load("@io_bazel_rules_webtesting//web:repositories.bzl", "browser_repositories", "web_test_repositories")
 | |
| 
 | |
| web_test_repositories()
 | |
| 
 | |
| browser_repositories(
 | |
|     chromium = True,
 | |
|     firefox = True,
 | |
| )
 | |
| 
 | |
| load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
 | |
| 
 | |
| ts_setup_workspace()
 | |
| 
 | |
| load("@angular//:index.bzl", "ng_setup_workspace")
 | |
| 
 | |
| ng_setup_workspace()
 | |
| 
 | |
| ##################################
 | |
| # Skylark documentation generation
 | |
| 
 | |
| load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
 | |
| 
 | |
| sass_repositories()
 | |
| 
 | |
| load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
 | |
| 
 | |
| skydoc_repositories()
 |