1.0.0 • Published 7 years ago

fis3-banner v1.0.0

Weekly downloads
5
License
-
Repository
github
Last release
7 years ago

fis3-banner

安装与使用

全局安装

npm install fis3-bannner -g

插件调用

// banner 为数组
fis.match("**.{js,es}", {
	<type>: fis.plugin('fis3-banner', {
		banner: ['/**',
			'* @version 1.1.0',
			'* repository: https://github.com/DaisyWang88/fis3-pluging-banner.git',
			'*/'		
		]	
	})
})


// banner 为字符串
fis.match("**.{js,es}", {
	<type>: fis.plugin('fis3-banner', {
		banner: '/**\n'
			+ '* @version 1.1.0\n'
			+ '* repository: https://github.com/DaisyWang88/fis3-pluging-banner.git\n'
			+ '*/'		
		]	
	})
})
1.0.0

7 years ago