-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i18n files now created at build time
- Loading branch information
Showing
7 changed files
with
18 additions
and
1,915 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.