29 lines
		
	
	
		
			599 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			599 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// node native
 | 
						|
import * as path from 'path';
 | 
						|
 | 
						|
export {
 | 
						|
  path
 | 
						|
}
 | 
						|
 | 
						|
// @git.zone scope
 | 
						|
import * as tspublish from '@git.zone/tspublish';
 | 
						|
 | 
						|
export {
 | 
						|
  tspublish
 | 
						|
}
 | 
						|
 | 
						|
// @push.rocks scope
 | 
						|
import * as smartcli from '@push.rocks/smartcli';
 | 
						|
import * as smartdelay from '@push.rocks/smartdelay';
 | 
						|
import * as smartfile from '@push.rocks/smartfile';
 | 
						|
import * as smartpath from '@push.rocks/smartpath';
 | 
						|
import * as smartpromise from '@push.rocks/smartpromise';
 | 
						|
 | 
						|
export { smartcli, smartdelay, smartfile, smartpath, smartpromise };
 | 
						|
 | 
						|
// third party scope
 | 
						|
import typescript from 'typescript';
 | 
						|
 | 
						|
export {
 | 
						|
  typescript
 | 
						|
} |