ng-annotate-adf-plugin
0.1.2 • Public • Published ng-annotate-adf-plugin
ng-annotate plugin to annotate angular-dashboard-framework widgets.
usage with gulp
package.json
{
"devDependencies": {
"gulp": "^3.8.10",
"gulp-load-plugins": "^0.8.0",
"gulp-ng-annotate": "^0.5.2",
"ng-annotate-adf-plugin": "^0.1.0",
"gulp-uglify": "^1.1.0"
}
}
gulpfile.js
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var annotateAdfPlugin = require('ng-annotate-adf-plugin');
var annotateOptions = {
plugin: [
annotateAdfPlugin
]
};
gulp.task('js', function() {
gulp.src('src/*.js')
.pipe($.ngAnnotate(annotateOptions))
.pipe($.uglify())
.pipe(gulp.dest('dist/'));
});
Versions
Version | Downloads (Last 7 Days) | Tag |
---|
0.1.2 | 11 | latest |
Version History
Version | Downloads (Last 7 Days) | Published |
---|
0.1.2 | 11 | |
0.1.1 | 0 | |
0.1.0 | 0 | |
Package Sidebar
Install
npm i ng-annotate-adf-plugin
Weekly Downloads