A gulp wrapper for amdclean.
npm install gulp-amdcleangulp-amdclean   
====
A gulp plugin for the very awesome amdclean. Now with 100% more amdclean.
javscript
npm install gulp-amdclean
`
Then use the factory to return a nice amdclean filtered stream.
`javascript
var gulp = require('gulp'),
Amdclean = require('gulp-amdclean');gulp.tasks('build', ['lint', 'test'], function() {
return gulp
.src(['src/main.js'])
.pipe(Amdclean.gulp({
'prefixMode': 'standard'
// some other options
})
.pipe(gulp.dest('./bin');
});
`Because right now i have to manually update the amdclean dependency and that may be a slow process; the amdclean filter supports DI so you can
inject any version you need. Simply use the second argument to pass your own version of amdclean and your all set.
`javascript
var amdclean = require('amdclean'), // your amdclean
filter = require('gulp-amdclean').gulp(options, amdclean) // a filter with your options and amdclean.
``Any option that you'd normally use with amdclean will work.
Commit anything you want within reason. Not sure what else is needed, but contribs are always welcome.