forked from bhutanio/anon.to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
29 lines (23 loc) · 882 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var fs = require('fs');
var gulp = require('gulp');
var elixir = require('laravel-elixir');
elixir(function (mix) {
mix.sass([
'app.scss'
], './public/css/style.css');
mix.scripts([
'./bower_components/bootstrap-sass/assets/javascripts/bootstrap.min.js',
'./bower_components/sweetalert/dist/sweetalert.min.js',
'./resources/assets/js/**/*.js'
], './public/js/app.js');
mix.scripts([
'./bower_components/html5shiv/dist/html5shiv.min.js',
'./bower_components/Respond/dest/respond.min.js'
], './public/js/html5shiv.respond.min.js');
mix.copy('./bower_components/bootstrap-sass/assets/fonts/bootstrap', 'public/fonts/');
mix.task('writeVersionFile');
});
gulp.task('writeVersionFile', function (cb) {
var version = Math.floor(Date.now() / 1000);
fs.writeFile('version.txt', version, cb);
});