Skip to content

Commit

Permalink
i18n files now created at build time
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Nov 4, 2023
1 parent ad75646 commit c5b22c2
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 1,915 deletions.
13 changes: 6 additions & 7 deletions gulpfile.mjs
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
import gulp from "gulp";

import * as css from "./utils/css.mjs";
// import * as lang from "./utils/lang.mjs";
import * as lang from "./utils/lang.mjs";
import * as javascript from "./utils/javascript.mjs";
import * as packs from "./utils/packs.mjs";

export default gulp.series(
gulp.parallel(
css.compile,
// lang.compile,
lang.compile,
javascript.lint,
javascript.compile
),

gulp.parallel(
css.watchUpdates,
// lang.watchUpdates,
lang.watchUpdates,
javascript.watchUpdates
)
);

export const build = gulp.parallel(
css.compile,
// lang.compile,
lang.compile,
javascript.lint,
javascript.compile,
packs.compile
);

// export const clean = gulp.parallel(css.clean, lang.clean, packs.clean);
export const clean = gulp.parallel(css.clean, packs.clean);
export const clean = gulp.parallel(css.clean, lang.clean, packs.clean);
export const compileCss = gulp.series(css.compile);
// export const compileLang = gulp.series(lang.compile);
export const compileLang = gulp.series(lang.compile);
export const compilePacks = gulp.series(packs.compile);
export const lintJs = gulp.series(javascript.lint);
334 changes: 0 additions & 334 deletions system/lang/de.json

This file was deleted.

Loading

0 comments on commit c5b22c2

Please sign in to comment.