Creates a wizard to walk through creating a commit message in the correct template for commit messages in Angular repositories. PR Close #38457
		
			
				
	
	
		
			26 lines
		
	
	
		
			645 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			645 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@npm_bazel_typescript//:index.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "utils",
 | |
|     srcs = glob([
 | |
|         "*.ts",
 | |
|         "git/*.ts",
 | |
|     ]),
 | |
|     module_name = "@angular/dev-infra-private/utils",
 | |
|     visibility = ["//dev-infra:__subpackages__"],
 | |
|     deps = [
 | |
|         "@npm//@octokit/graphql",
 | |
|         "@npm//@octokit/rest",
 | |
|         "@npm//@octokit/types",
 | |
|         "@npm//@types/inquirer",
 | |
|         "@npm//@types/node",
 | |
|         "@npm//@types/shelljs",
 | |
|         "@npm//chalk",
 | |
|         "@npm//inquirer",
 | |
|         "@npm//inquirer-autocomplete-prompt",
 | |
|         "@npm//shelljs",
 | |
|         "@npm//tslib",
 | |
|         "@npm//typed-graphqlify",
 | |
|     ],
 | |
| )
 |