Move the release notes tooling under its own directory under release rather than within publish, in preparation to have a release note generation command for ad-hoc release note generation. PR Close #42225
		
			
				
	
	
		
			23 lines
		
	
	
		
			578 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			578 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm//@bazel/typescript:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "notes",
 | |
|     srcs = glob([
 | |
|         "**/*.ts",
 | |
|     ]),
 | |
|     module_name = "@angular/dev-infra-private/release/notes",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "//dev-infra/commit-message",
 | |
|         "//dev-infra/release/config",
 | |
|         "//dev-infra/release/versioning",
 | |
|         "//dev-infra/utils",
 | |
|         "@npm//@types/ejs",
 | |
|         "@npm//@types/node",
 | |
|         "@npm//@types/semver",
 | |
|         "@npm//@types/yargs",
 | |
|         "@npm//ejs",
 | |
|         "@npm//semver",
 | |
|     ],
 | |
| )
 |