mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
const gulp = require('gulp');
|
|
const utils = require('@joplin/tools/gulp/utils');
|
|
const compilePackageInfo = require('@joplin/tools/compilePackageInfo');
|
|
|
|
import injectedJsGulpTasks from './tools/buildInjectedJs/gulpTasks';
|
|
|
|
const tasks = {
|
|
encodeAssets: {
|
|
fn: require('./tools/encodeAssets'),
|
|
},
|
|
copyWebAssets: {
|
|
fn: require('./tools/copyAssets').default,
|
|
},
|
|
compilePackageInfo: {
|
|
fn: async () => {
|
|
await compilePackageInfo(`${__dirname}/package.json`, `${__dirname}/packageInfo.js`);
|
|
},
|
|
},
|
|
|
|
...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(
|
|
'compilePackageInfo',
|
|
'buildInjectedJs',
|
|
'copyWebAssets',
|
|
'encodeAssets',
|
|
'podInstall',
|
|
));
|