Add a command to build the release output without stamping for release and link via `yarn link` the generated builds to a project provided. PR Close #42319
		
			
				
	
	
		
			17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load("@npm//@bazel/typescript:index.bzl", "ts_library")
 | 
						|
 | 
						|
ts_library(
 | 
						|
    name = "misc",
 | 
						|
    srcs = glob(["**/*.ts"]),
 | 
						|
    module_name = "@angular/dev-infra-private/misc/",
 | 
						|
    visibility = ["//dev-infra:__subpackages__"],
 | 
						|
    deps = [
 | 
						|
        "//dev-infra/release/build",
 | 
						|
        "//dev-infra/release/config",
 | 
						|
        "//dev-infra/utils",
 | 
						|
        "@npm//@types/node",
 | 
						|
        "@npm//@types/yargs",
 | 
						|
        "@npm//chalk",
 | 
						|
    ],
 | 
						|
)
 |