Files
Speedtest-Tracker/conf/site/node_modules/react-chartjs-2/gulpfile.js
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

44 lines
691 B
JavaScript
Vendored

var gulp = require('gulp');
var initGulpTasks = require('react-component-gulp-tasks');
/**
* Tasks are added by the react-component-gulp-tasks package
*
* See https://github.com/JedWatson/react-component-gulp-tasks
* for documentation.
*
* You can also add your own additional gulp tasks if you like.
*/
var taskConfig = {
component: {
name: 'react-chartjs-2',
dependencies: [
'react',
'react-dom',
'chart.js'
],
lib: 'lib',
file: 'index.js'
},
example: {
src: 'example/src',
dist: 'example/dist',
files: [
'index.html',
'.gitignore'
],
scripts: [
'example.js'
],
less: [
'example.less'
]
}
};
initGulpTasks(gulp, taskConfig);