https://github.com/coot/gulp-javascript-ctags
gulp plugin for javascript-ctags node module
https://github.com/coot/gulp-javascript-ctags
Last synced: 11 months ago
JSON representation
gulp plugin for javascript-ctags node module
- Host: GitHub
- URL: https://github.com/coot/gulp-javascript-ctags
- Owner: coot
- Created: 2015-09-12T13:03:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-12T13:18:46.000Z (over 10 years ago)
- Last Synced: 2025-04-27T15:49:45.916Z (about 1 year ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [gulp](https://github.com/gulpjs/gulp)-javascript-ctags
Gulp plugin for [javascript-ctags](https://github.com/andersjanmyr/javascript-ctags).
## Instalation
Run `npm install --save-dev gulp-javascript-ctags`.
## Usage
```
var tags = require('gulp-javascript-ctags');
gulp.task('tags', function() {
return gulp.src('src/**/*.js')
.pipe(tags('tags')) // filename of the output tags file
.pipe(gulp.dest('./')); // destination folder
});
gulp.task('watch-tags', ['tags'], function() {
return gulp.watch('src/**/*.js', ['tags']);
});
```