https://github.com/zswang/gulp-jdists
Code block processing with jdists - gulp plugin
https://github.com/zswang/gulp-jdists
gulp jdists
Last synced: 4 months ago
JSON representation
Code block processing with jdists - gulp plugin
- Host: GitHub
- URL: https://github.com/zswang/gulp-jdists
- Owner: zswang
- Created: 2015-08-22T16:01:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T13:35:02.000Z (about 7 years ago)
- Last Synced: 2025-02-26T01:07:29.648Z (5 months ago)
- Topics: gulp, jdists
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-jdists [](https://travis-ci.org/zswang/gulp-jdists) [](http://badge.fury.io/js/gulp-jdists)
> Code block processing with [jdists](https://github.com/zswang/jdists).
## Installation
Install package with NPM and add it to your development dependencies:
`npm install --save-dev gulp-jdists`
## Usage
```javascript
var jdists = require('gulp-jdists');gulp.task('dist', function() {
return gulp.src('lib/*.js')
.pipe(jdists())
.pipe(gulp.dest('dist'));
});
```## Options
- `remove`
Remove block tag name list (default "remove,test")
- `trigger`
Trigger name list (default "release")
- `config`
Path to config file (default ".jdistsrc")
MIT © [zswang](http://weibo.com/zswang)