mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
43 lines
842 B
TypeScript
43 lines
842 B
TypeScript
const gulp = require('gulp');
|
|
const utils = require('@joplin/tools/gulp/utils');
|
|
|
|
import injectedJsGulpTasks from './tools/buildInjectedJs/gulpTasks';
|
|
|
|
const tasks = {
|
|
encodeAssets: {
|
|
fn: require('./tools/encodeAssets'),
|
|
},
|
|
...injectedJsGulpTasks,
|
|
podInstall: {
|
|
fn: require('./tools/podInstall'),
|
|
},
|
|
};
|
|
|
|
utils.registerGulpTasks(gulp, tasks);
|
|
|
|
gulp.task('buildInjectedJs', gulp.series(
|
|
'beforeBundle',
|
|
'buildCodeMirrorEditor',
|
|
'buildJsDrawEditor',
|
|
'buildPluginBackgroundScript',
|
|
'buildNoteViewerBundle',
|
|
'copyWebviewLib',
|
|
));
|
|
|
|
gulp.task('watchInjectedJs', gulp.series(
|
|
'beforeBundle',
|
|
'copyWebviewLib',
|
|
gulp.parallel(
|
|
'watchCodeMirrorEditor',
|
|
'watchJsDrawEditor',
|
|
'watchPluginBackgroundScript',
|
|
'watchNoteViewerBundle',
|
|
),
|
|
));
|
|
|
|
gulp.task('build', gulp.series(
|
|
'buildInjectedJs',
|
|
'encodeAssets',
|
|
'podInstall',
|
|
));
|