-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
132 lines (110 loc) · 4.59 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
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 + '/angular-oauth2/dist/angular-oauth2.min.js',
config.bower_path + '/ng-file-upload/ng-file-upload.min.js',
config.bower_path + '/query-string/query-string.js',
config.bower_path + '/angular-http-auth/src/http-auth-interceptor.js',
config.bower_path + '/angularUtils-pagination/dirPagination.js',
config.bower_path + '/pusher-websocket-iso/dist/web/pusher.js',
config.bower_path + '/pusher-angular/lib/pusher-angular.min.js',
config.bower_path + '/angular-ui-notification/dist/angular-ui-notification.min.js',
config.bower_path + '/moment/moment.js',
config.bower_path + '/angular-moment/angular-moment.min.js',
config.bower_path + '/moment/locale/pt-br.js',
// Add Fora do Curso
config.bower_path + '/ng-table/dist/ng-table.min.js',
config.bower_path + '/angular-ui-select/dist/select.min.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',
config.bower_path + '/ng-table/dist/ng-table.min.css',
config.bower_path + '/angular-ui-select/dist/select.min.css',
config.bower_path + '/angular-ui-notification/dist/angular-ui-notification.min.css'
];
config.build_path_html = config.build_path + '/views';
config.build_path_fonts = config.build_path + '/fonts';
config.build_path_images = config.build_path + '/images';
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-fonts', function () {
gulp.src(
config.assets_path + '/fonts/**/*'
)
.pipe(gulp.dest(config.build_path_fonts))
.pipe(liveReload());
});
gulp.task('copy-images', function () {
gulp.src(
config.assets_path + '/images/**/*'
)
.pipe(gulp.dest(config.build_path_images))
.pipe(liveReload());
});
gulp.task('copy-styles', function () {
gulp.src(
config.assets_path + '/css/**/*.css'
)
.pipe(gulp.dest(config.build_path_css))
.pipe(liveReload());
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());
gulp.src(config.vendor_path_js)
.pipe(gulp.dest(config.build_vendor_path_js))
.pipe(liveReload());
});
gulp.task('clear-build-folder', function () {
clean.sync(config.build_path);
});
gulp.task('default', ['clear-build-folder'], function () {
gulp.start('copy-html', 'copy-fonts', 'copy-images');
elixir(function (mix) {
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']);
});
});
gulp.task('watch-dev', ['clear-build-folder'], function () {
liveReload.listen();
gulp.start('copy-styles', 'copy-scripts', 'copy-html', 'copy-fonts', 'copy-images');
gulp.watch(config.assets_path + '/**', [
'copy-styles', 'copy-scripts', 'copy-html', 'copy-fonts', 'copy-images'
]);
});