Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zswang/gulp-jdists
Code block processing with jdists - gulp plugin
https://github.com/zswang/gulp-jdists
gulp jdists
Last synced: about 1 month 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T13:35:02.000Z (over 6 years ago)
- Last Synced: 2024-10-06T11:06:45.125Z (about 1 month 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 [![Build Status](https://img.shields.io/travis/zswang/gulp-jdists/master.svg)](https://travis-ci.org/zswang/gulp-jdists) [![NPM version](https://img.shields.io/npm/v/gulp-jdists.svg)](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)