1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-16 04:10:09 -07:00
PrintABrick/gulpfile.js
2017-06-08 18:07:27 +02:00

77 lines
2.8 KiB
JavaScript

var gulp = require('gulp'),
plugins = require('gulp-load-plugins')();
gulp.task('css', function() {
return gulp.src([
'bower_components/semantic/dist/semantic.css',
'bower_components/lightbox2/dist/css/lightbox.css',
'bower_components/jquery-ui/themes/base/jquery-ui.css',
'bower_components/jQuery-ui-Slider-Pips/dist/jquery-ui-slider-pips.css',
'bower_components/select2/dist/css/select2.css',
'app/Resources/assets/style/style.scss',
])
.pipe(plugins.sass().on('error', plugins.sass.logError))
.pipe(plugins.concat('style.css', {newLine: ' '}))
.pipe(plugins.environments.production(plugins.cssmin()))
.pipe(gulp.dest('web/resources/css'));
});
gulp.task('three', function() {
gulp.src([
'bower_components/three.js/build/three.js',
'bower_components/three.js/examples/js/libs/stats.min.js',
'bower_components/three.js/examples/js/loaders/STLLoader.js',
'bower_components/three.js/examples/js/Detector.js',
])
.pipe(plugins.concat('three.js'))
.pipe(plugins.environments.production(plugins.uglify()))
.pipe(gulp.dest('web/resources/js'));
gulp.src([
'bower_components/three.js/examples/js/controls/OrbitControls.js',
])
.pipe(plugins.concat('OrbitControls.js'))
.pipe(plugins.environments.production(plugins.uglify()))
.pipe(gulp.dest('web/resources/js'));
});
gulp.task('js', function() {
return gulp.src([
'bower_components/jquery/dist/jquery.js',
'bower_components/jquery-ui/jquery-ui.js',
'bower_components/jQuery-ui-Slider-Pips/dist/jquery-ui-slider-pips.js',
'bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js',
'bower_components/select2/dist/js/select2.full.js',
'bower_components/jquery-address/src/jquery.address.js',
'bower_components/semantic/dist/semantic.js',
'bower_components/lightbox2/dist/js/lightbox.js',
'app/Resources/assets/js/**.js',
])
.pipe(plugins.concat('style.js'))
.pipe(plugins.environments.production(plugins.uglify()))
.pipe(gulp.dest('web/resources/js'));
});
gulp.task('files:semantic', function () {
return gulp.src(
'bower_components/semantic/dist/themes/**'
)
.pipe(gulp.dest('web/resources/css/themes'));
});
gulp.task('files:images', function () {
return gulp.src([
'bower_components/lightbox2/dist/images/**',
'app/Resources/assets/images/**'
])
.pipe(gulp.dest('web/resources/images'));
});
gulp.task('watch', ['js', 'css', 'three'], function () {
gulp.watch('app/Resources/assets/js/**.js' , ['js']);
gulp.watch('app/Resources/assets/style/**/*.scss' , ['css']);
});
gulp.task('default', function () {
return gulp.start(['files:semantic', 'files:images', 'js', 'css', 'three']);
});