1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-mobile/gulpfile.ts

27 lines
514 B
TypeScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
const gulp = require('gulp');
const utils = require('@joplin/tools/gulp/utils');
import { buildInjectedJS, watchInjectedJS } from './tools/buildInjectedJs';
2020-11-05 18:58:23 +02:00
const tasks = {
encodeAssets: {
fn: require('./tools/encodeAssets'),
},
buildInjectedJs: {
fn: buildInjectedJS,
},
watchInjectedJs: {
fn: watchInjectedJS,
2020-11-05 18:58:23 +02:00
},
podInstall: {
fn: require('./tools/podInstall'),
},
};
utils.registerGulpTasks(gulp, tasks);
gulp.task('build', gulp.series(
'buildInjectedJs',
2020-11-05 18:58:23 +02:00
'encodeAssets',
'podInstall'
));