-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
141 lines (111 loc) · 3.88 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
var elixir = require('laravel-elixir'),
liveReload = require('gulp-livereload'),
clean = require('rimraf'),
gulp = require('gulp');
var config = {
assets_path:'./resources/assets',
build_path:'./public/build'
};
config.bower_path = config.assets_path + '/../bower_components';
config.build_path_js = config.build_path + '/js';
config.build_vendor_path_js = config.build_path_js + '/vendor';
config.vendor_path_js = [
config.bower_path + '/jquery/dist/jquery.min.js',
config.bower_path + '/bootstrap/dist/js/bootstrap.min.js',
config.bower_path + '/angular/angular.min.js',
config.bower_path + '/angular-route/angular-route.min.js',
config.bower_path + '/angular-resource/angular-resource.min.js',
config.bower_path + '/angular-animate/angular-animate.min.js',
config.bower_path + '/angular-messages/angular-messages.min.js',
config.bower_path + '/angular-bootstrap/ui-bootstrap-tpls.min.js',
config.bower_path + '/angular-strap/dist/modules/navbar.min.js',
config.bower_path + '/angular-cookies/angular-cookies.min.js',
config.bower_path + '/query-string/query-string.js',
config.bower_path + '/angular-oauth2/dist/angular-oauth2.min.js',
config.bower_path + '/ng-file-upload/ng-file-upload.min.js',
config.bower_path + '/angular-http-auth/src/http-auth-interceptor.js',
config.bower_path + '/angularUtils-pagination/dirPagination.js',
];
config.build_path_css = config.build_path + '/css';
config.build_vendor_path_css = config.build_path_css + '/vendor';
config.vendor_path_css = [
config.bower_path + '/bootstrap/dist/css/bootstrap.min.css',
config.bower_path + '/bootstrap/dist/css/bootstrap-theme.min.css'
];
/*
gulp.task('teste', function(){
console.log('Está funcionando!');
});
*/
/*
* 27.08.2015 - Copiar os JS htmls
* origem: \resources\assets\js\views\
* destino: \public\build\views\
*/
config.build_path_html = config.build_path + '/views';
config.build_path_font = config.build_path + '/fonts';
config.build_path_image = config.build_path + '/images';
gulp.task('copy-font', function(){
gulp.src([
config.assets_path + '/fonts/**/*'
])
.pipe(gulp.dest(config.build_path_font))
.pipe(liveReload());
});
gulp.task('copy-image', function(){
gulp.src([
config.assets_path + '/images/**/*'
])
.pipe(gulp.dest(config.build_path_image))
.pipe(liveReload());
});
gulp.task('copy-html', function(){
gulp.src([
config.assets_path + '/js/views/**/*.html'
])
.pipe(gulp.dest(config.build_path_html))
.pipe(liveReload());
});
gulp.task('copy-styles', function(){
gulp.src([
config.assets_path + '/css/**/*.css'
])
.pipe(gulp.dest(config.build_path_css))
.pipe(liveReload());
// css de terceiros (vendor)
gulp.src(config.vendor_path_css)
.pipe(gulp.dest(config.build_vendor_path_css))
.pipe(liveReload());
});
gulp.task('copy-scripts', function(){
gulp.src([
config.assets_path + '/js/**/*.js'
])
.pipe(gulp.dest(config.build_path_js))
.pipe(liveReload());
// JS de terceiros (vendor)
gulp.src(config.vendor_path_js)
.pipe(gulp.dest(config.build_vendor_path_js))
.pipe(liveReload());
});
// limpar a pasta build
gulp.task('clear-build-folder', function(){
clean.sync(config.build_path);
});
gulp.task('watch-dev', ['clear-build-folder'], function(){
liveReload.listen();
gulp.start('copy-styles', 'copy-scripts', 'copy-html', 'copy-font', 'copy-image');
gulp.watch(config.assets_path + '/**', [
'copy-styles', 'copy-scripts', 'copy-html'
]);
});
// 25.08.2015 - Default //
gulp.task('default',['clear-build-folder'], function(){
gulp.start('copy-html', 'copy-font', 'copy-image');
elixir(function(mix) {
//mix.sass('app.scss');
mix.styles(config.vendor_path_css.concat([config.assets_path + '/css/**/*.css']), 'public/css/all.css', config.assets_path);
mix.scripts(config.vendor_path_js.concat([config.assets_path + '/js/**/*.js']), 'public/js/all.js', config.assets_path);
mix.version(['js/all.js', 'css/all.css']);
});
});