Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: compile with lib #265

Merged
merged 3 commits into from Nov 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion lib/gulpfile.js
Expand Up @@ -473,6 +473,11 @@ gulp.task('compile-with-lib', done => {
compile().on('finish', done);
});

gulp.task('compile-with-lib-experimental', done => {
chunsch marked this conversation as resolved.
Show resolved Hide resolved
console.log('[Parallel] Compile to js...');
compile(undefined, false).on('finish', done);
});

gulp.task('compile-finalize', done => {
// Additional process of compile finalize
const { compile: { finalize } = {} } = getConfig();
Expand All @@ -491,7 +496,11 @@ gulp.task(
gulp.task(
'compile-experimental',
gulp.series(
gulp.parallel('compile-with-es-experimental', 'compile-with-locale'),
gulp.parallel(
'compile-with-es-experimental',
'compile-with-lib-experimental',
'compile-with-locale'
),
'compile-finalize'
)
);
Expand Down