mybuddy/gulpfile.js/config.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-10-22 18:00:42 +00:00
var basePath = 'babybuddy/static/babybuddy/';
2017-08-21 20:03:16 +00:00
module.exports = {
basePath: basePath,
compressConfig: {
scripts: {
dest: basePath + 'js/'
},
styles: {
dest: basePath + 'css/'
}
},
extrasConfig: {
fonts: {
dest: basePath + 'fonts/',
extras: 'node_modules/font-awesome/fonts/*'
}
},
scriptsConfig: {
dest: basePath + 'js/',
vendor: [
'node_modules/jquery/dist/jquery.js',
'node_modules/popper.js/dist/umd/popper.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/moment/moment.js',
'node_modules/tempusdominus-bootstrap-4/build/js/tempusdominus-bootstrap-4.js'
],
graph: [
'node_modules/plotly.js/dist/plotly-cartesian.js'
],
2017-08-21 20:03:16 +00:00
app: [
2017-10-22 18:00:42 +00:00
'babybuddy/static_src/js/babybuddy.js',
'api/static_src/js/*.js',
'core/static_src/js/*.js',
'dashboard/static_src/js/*.js'
2017-08-21 20:03:16 +00:00
]
},
stylesConfig: {
dest: basePath + 'css/',
vendor: [
2017-09-15 16:45:12 +00:00
'node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.css'
2017-08-21 20:03:16 +00:00
],
2017-10-22 18:00:42 +00:00
app: 'babybuddy/static_src/scss/babybuddy.scss',
ignore: [
2017-10-22 18:00:42 +00:00
'babybuddy.scss'
]
2017-08-22 16:56:30 +00:00
},
watchConfig: {
scriptsGlob: [
'**/static_src/js/**/*.js',
2017-10-22 18:00:42 +00:00
'!babybuddy/static/js/'
2017-08-22 16:56:30 +00:00
],
stylesGlob: [
'**/static_src/scss/**/*.scss'
2017-08-22 16:56:30 +00:00
]
2017-08-21 20:03:16 +00:00
}
};