mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
23 lines
443 B
JavaScript
23 lines
443 B
JavaScript
const gulp = require('gulp');
|
|
const utils = require('@joplin/tools/gulp/utils');
|
|
|
|
const tasks = {
|
|
encodeAssets: {
|
|
fn: require('./tools/encodeAssets'),
|
|
},
|
|
buildReactNativeInjectedJs: {
|
|
fn: require('./tools/buildReactNativeInjectedJs'),
|
|
},
|
|
podInstall: {
|
|
fn: require('./tools/podInstall'),
|
|
},
|
|
};
|
|
|
|
utils.registerGulpTasks(gulp, tasks);
|
|
|
|
gulp.task('build', gulp.series(
|
|
'buildReactNativeInjectedJs',
|
|
'encodeAssets',
|
|
'podInstall'
|
|
));
|