Open tamtakoe opened 9 years ago
I find it too verbose if there is deps: ["index"] in configFile.
deps: ["index"]
configFile
amdOptimize.src("index", { configFile : "src/scripts/require_config.js" });
Better
amdOptimize.src({ configFile : "src/scripts/require_config.js" });
I also do not understand why do set files in gulp.src. In the gulp.src must specify only config file.
gulp.src
Much better
gulp.src("src/scripts/require_config.js") .pipe(amdOptimize())
I find it too verbose if there is
deps: ["index"]
inconfigFile
.Better
I also do not understand why do set files in
gulp.src
. In thegulp.src
must specify only config file.Much better