1.0.2 • Published 8 years ago

fis-deploy-amdpackage v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

fis-deploy-amdpackage

Packed AMD File And Converts AMD Code To Standard JavaScript.

use

npm install --save fis-deploy-amdpackage

settings

//file : path/to/project/fis-conf.js
fis.match('src/**.js', {
	deploy: [
		fis.plugin('amdpackage', {
			source: './src/index.js',
			output: '../output/index.js',
			minify: true //开启压缩
		}),
		fis.plugin('local-deliver')
	]
});