fix plugins translations
parent
8bf616ff2e
commit
fb76cfd322
|
@ -398,14 +398,11 @@ gulp.task("locales", function() {
|
||||||
localeFile.dirname = pluginFolder;
|
localeFile.dirname = pluginFolder;
|
||||||
}));
|
}));
|
||||||
|
|
||||||
return gulp.src(paths.locales)
|
var core = gulp.src(paths.locales);
|
||||||
|
|
||||||
|
return mergeStream(plugins, core)
|
||||||
.pipe(gulpif(isDeploy, jsonminify()))
|
.pipe(gulpif(isDeploy, jsonminify()))
|
||||||
.pipe(gulp.dest(paths.distVersion + "locales"));
|
.pipe(gulp.dest(paths.distVersion + "locales"));
|
||||||
|
|
||||||
var core = gulp.src(paths.locales)
|
|
||||||
.pipe(gulp.dest(paths.distVersion + "locales"));
|
|
||||||
|
|
||||||
return mergeStream(plugins, core);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("coffee-lint", function () {
|
gulp.task("coffee-lint", function () {
|
||||||
|
|
Loading…
Reference in New Issue