mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 12:58:38 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			223 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			223 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { chain, externalSchematic, Rule } from '@angular-devkit/schematics';
 | 
						|
 | 
						|
export default function (schema: any): Rule {
 | 
						|
	return chain([
 | 
						|
		externalSchematic('@nrwl/workspace', 'lib', {
 | 
						|
			name: schema.name,
 | 
						|
		}),
 | 
						|
	]);
 | 
						|
}
 |