1.2.4 • Published 9 years ago

gulp-jsx2example v1.2.4

Weekly downloads
477
License
MIT
Repository
github
Last release
9 years ago

gulp-jsx2example

npm version npm download

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

https://www.npmjs.com/package/gh-pages

1.2.4

9 years ago

2.0.0

9 years ago

2.0.1-0

9 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.1

10 years ago

2.0.0-2

10 years ago

2.0.0-1

10 years ago

2.0.0-0

10 years ago

1.1.0

10 years ago

1.0.13

10 years ago

1.0.12

10 years ago

1.0.11

10 years ago

1.0.10

10 years ago

1.0.9

10 years ago

1.0.8

11 years ago

1.0.7

11 years ago

1.0.6

11 years ago

1.0.5

11 years ago

1.0.4

11 years ago

1.0.3

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago