mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
38 lines
1,019 B
JavaScript
38 lines
1,019 B
JavaScript
|
var gulp = require('gulp'),
|
||
|
debug = require('gulp-debug'),
|
||
|
webpack = require('gulp-webpack'),
|
||
|
coffee = require('gulp-coffee'),
|
||
|
gutil = require('gulp-util'),
|
||
|
gif = require('gulp-if'),
|
||
|
gcopy = require('gulp-copy'),
|
||
|
useref = require('gulp-useref'),
|
||
|
gulpif = require('gulp-if'),
|
||
|
uglify = require('gulp-uglify'),
|
||
|
minifyCss = require('gulp-clean-css');
|
||
|
|
||
|
gulp.task('webpack', function() {
|
||
|
return gulp.src('app/main.ts')
|
||
|
.pipe(webpack( require('./config/webpack.config.js') ))
|
||
|
.pipe(gulp.dest('dist/'));
|
||
|
})
|
||
|
|
||
|
gulp.task('copy', function(){
|
||
|
gulp.src([
|
||
|
'*.png',
|
||
|
'app/**/*.css',
|
||
|
'app/**/*.html',
|
||
|
'tutorial_files/**',
|
||
|
])
|
||
|
.pipe(gcopy('dist/'));
|
||
|
})
|
||
|
|
||
|
gulp.task('build', ['webpack', 'copy'], function(){
|
||
|
return gulp.src('index.html')
|
||
|
.pipe(useref())
|
||
|
.pipe(debug({ title: 'Uglify scripts' }))
|
||
|
.pipe(gulpif('*.js', uglify()))
|
||
|
.pipe(debug({ title: 'Squash css' }))
|
||
|
.pipe(gulpif('*.css', minifyCss()))
|
||
|
.pipe(gulp.dest('dist'));
|
||
|
})
|