1.2.4 • Published 8 years ago
gulp-jsx2example v1.2.4
gulp-jsx2example
Compile JSX file to HTML (react demo)
Usage
return gulp
.src(sourceFiles)
.pipe(jsx2example(options));
Options
{
readme: 'README.md', // readme file name, content will be render to index.html
package: 'package.json', // package file name, access repository information
cwd: process.cwd()
}
Example
You can reference this repository gulpfile.js
The examples
floder published to http://noyobo.com/gulp-jsx2example/
var jsx2example = require('gulp-jsx2example')
gulp.task('examples', ['clean:site'], function(){
return gulp
.src(['./examples/*.*'])
.pipe(jsx2example()) // jsx2example(options)
.pipe(gulp.dest('site/examples/'))
})
var webpack = require('gulp-webpack')
gulp.task('webpack', ['clean:build'], function() {
return gulp
.src(['./examples/*.*'])
.pipe(webpack())
.pipe(gulp.dest('site/examples/'))
./
├── README.md
└── examples
├── jsfile.js
└── jsxfile.js
after
./
├── README.md
├── site
│ ├── examples
│ │ ├── common.js
│ │ ├── common.js.map
│ │ ├── jsfile.html
│ │ ├── jsfile.js
│ │ ├── jsfile.js.map
│ │ ├── jsxfile.html
│ │ ├── jsxfile.js
│ │ └── jsxfile.js.map
│ └── index.html
└── examples
├── jsfile.js
└── jsxfile.js
Publish
gh-pages -d site
1.2.4
8 years ago
2.0.0
8 years ago
2.0.1-0
8 years ago
1.2.3
9 years ago
1.2.2
9 years ago
1.2.1
9 years ago
1.2.0
9 years ago
1.1.1
9 years ago
2.0.0-2
9 years ago
2.0.0-1
9 years ago
2.0.0-0
9 years ago
1.1.0
9 years ago
1.0.13
9 years ago
1.0.12
9 years ago
1.0.11
10 years ago
1.0.10
10 years ago
1.0.9
10 years ago
1.0.8
10 years ago
1.0.7
10 years ago
1.0.6
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago