forked from plentymarkets/plugin-ceres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
executable file
·226 lines (204 loc) · 6.43 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
require("babel-polyfill");
const JS_SRC = "./resources/js/src/";
const JS_DIST = "./resources/js/dist/";
const SCSS_SRC = "./resources/scss/";
const SCSS_DIST = "./resources/css/";
const OUTPUT_PREFIX = "ceres";
// import gulp
var gulp = require("gulp");
var gutil = require("gulp-util");
var sourcemaps = require("gulp-sourcemaps");
var concat = require("gulp-concat");
var uglify = require("gulp-uglify");
var rename = require("gulp-rename");
var browserify = require("browserify");
var babelify = require("babelify");
var glob = require("glob");
var source = require("vinyl-source-stream");
var buffer = require("vinyl-buffer");
var minifyCSS = require("gulp-minify-css");
var eslint = require("gulp-eslint");
var sass = require("gulp-sass");
var autoprefixer = require("gulp-autoprefixer");
var copy = require("gulp-copy");
var insert = require("gulp-insert");
var fs = require("fs");
var path = require("path");
gulp.task("default", ["build"]);
gulp.task("build", [
"build:bundle",
"build:sass-min"
]);
// Bundle everything
gulp.task("build:bundle", [
"build:productive-app",
"build:vendor",
"build:productive-vendor",
], function()
{
return gulp.src([
JS_DIST + OUTPUT_PREFIX + "-vendor.productive.js",
JS_SRC + "app.config.js",
JS_DIST + OUTPUT_PREFIX + "-app.js"
])
.pipe(sourcemaps.init({loadMaps: true}))
.pipe(concat(OUTPUT_PREFIX + ".js"))
.pipe(gulp.dest(JS_DIST))
.pipe(rename(OUTPUT_PREFIX + ".min.js"))
.pipe(uglify().on("error", gutil.log))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(JS_DIST));
});
// Build app
gulp.task("build:app", function()
{
var builder = browserify({
entries : ["app/main.js"].concat( glob.sync("app/!(services)/**/*.js", {cwd: JS_SRC}) ),
debug : true,
basedir : JS_SRC,
paths : ["app/"],
transform: babelify
});
return builder.bundle()
.on("error", function(err)
{
console.log(err.toString());
this.emit("end");
})
.pipe(source(OUTPUT_PREFIX + "-app.js"))
.pipe(buffer())
.pipe(sourcemaps.init({loadMaps: true}))
//.pipe(addSrc.append(JS_SRC + "app/main.js"))
.pipe(concat(OUTPUT_PREFIX + "-app.js"))
.pipe(sourcemaps.write(".", {
includeContent: false,
sourceRoot : "../src"
}))
.pipe(gulp.dest(JS_DIST));
});
// Build app for productive ( with eslint)
gulp.task("build:productive-app", ["build:lint"], function()
{
var builder = browserify({
entries : ["app/main.js"].concat( glob.sync("app/!(services)/**/*.js", {cwd: JS_SRC}) ),
debug : true,
basedir : JS_SRC,
paths : ["app/"],
transform: babelify
});
return builder.bundle()
.pipe(source(OUTPUT_PREFIX + "-app.js"))
.pipe(buffer())
.pipe(sourcemaps.init({loadMaps: true}))
//.pipe(addSrc.append(JS_SRC + "app/main.js"))
.pipe(concat(OUTPUT_PREFIX + "-app.js"))
.pipe(sourcemaps.write(".", {
includeContent: false,
sourceRoot : "../src"
}))
.pipe(gulp.dest(JS_DIST));
});
// Build Vendor
gulp.task("build:productive-vendor", function()
{
var libraries = require(JS_SRC + "vendor.productive.json");
return gulp.src(libraries)
.pipe(sourcemaps.init())
.pipe(concat(OUTPUT_PREFIX + "-vendor.productive.js"))
.pipe(sourcemaps.write(".", {sourceRoot: "../src/libraries"}))
.pipe(gulp.dest(JS_DIST));
});
gulp.task("build:vendor", function()
{
var libraries = require(JS_SRC + "vendor.json");
return gulp.src(libraries)
.pipe(sourcemaps.init())
.pipe(concat(OUTPUT_PREFIX + "-vendor.js"))
.pipe(sourcemaps.write(".", {sourceRoot: "../src/libraries"}))
.pipe(gulp.dest(JS_DIST));
});
// ESLint
gulp.task("build:lint", function()
{
// ESLint ignores files with "node_modules" paths.
// So, it's best to have gulp ignore the directory as well.
// Also, Be sure to return the stream from the task;
// Otherwise, the task may end before the stream has finished.
return gulp.src([
"resources/js/src/**/*.js",
"!node_modules/**"
])
.pipe(eslint({
configFile: "./.eslintrc.json",
fix : true
}))
.pipe(gulp.dest("resources/js/src/"))
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format("table"))
.pipe(eslint.failAfterError());
});
// SASS
gulp.task("build:sass-min", ["build:sass"], function()
{
return buildSass(OUTPUT_PREFIX + ".min.css", "compressed");
});
gulp.task("build:sass", ["copy:sass-vendor"], function()
{
return buildSass(OUTPUT_PREFIX + ".css", "expanded");
});
gulp.task("copy:sass-vendor", function()
{
return gulp
.src([
'node_modules/bootstrap/scss/**/*.scss',
'node_modules/font-awesome/scss/**/*.scss',
'node_modules/flag-icon-css/sass/**/*.scss',
'node_modules/shariff/build/shariff.min.css'
])
.pipe(copy(SCSS_SRC, {prefix: 1}))
});
function buildSass(outputFile, outputStyle)
{
var config = {
scssOptions : {
errLogToConsole: true,
outputStyle : outputStyle,
data: ''
},
prefixOptions: {
browsers: [
"last 2 versions",
"> 5%",
"Firefox ESR"
]
}
};
var pluginConfig = require('./config');
var scssConfig = pluginConfig
.filter(function(configEntry) {
return configEntry.scss === true;
})
.map(function(configEntry) {
return "$" + configEntry.key.split(".").join("") + ": " + configEntry.default + ";";
})
.join('');
return gulp
.src(SCSS_SRC + "Ceres.scss")
.pipe(insert.prepend(scssConfig))
.pipe(sourcemaps.init())
.pipe(sass(config.scssOptions).on("error", sass.logError))
.pipe(rename(outputFile))
.pipe(autoprefixer(config.prefixOptions))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(SCSS_DIST));
}
// Watchers
gulp.task("watch:js", ["build:vendor"], function()
{
return gulp.watch(JS_SRC + "**/*.js", ["build:app"]);
});
gulp.task("watch:sass", function()
{
return gulp.watch(SCSS_SRC + "**/*.scss", ["build:sass"]);
});