react-select-plus
Version:
A fork of react-select with support for option groups
40 lines (34 loc) • 549 B
JavaScript
var gulp = require('gulp');
var initGulpTasks = require('react-component-gulp-tasks');
var taskConfig = {
component: {
name: 'Select',
dependencies: [
'classnames',
'react-input-autosize',
'react',
'react-dom'
],
less: {
path: 'less',
entry: 'default.less'
}
},
example: {
src: 'examples/src',
dist: 'examples/dist',
standalone: true,
files: [
'index.html',
'standalone.html',
'.gitignore'
],
scripts: [
'app.js'
],
less: [
'example.less'
]
}
};
initGulpTasks(gulp, taskConfig);