mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
const gulp = require('gulp');
|
|
const fs = require('fs-extra');
|
|
const utils = require('@joplin/tools/gulp/utils');
|
|
|
|
const tasks = {};
|
|
|
|
tasks.prepareBuild = {
|
|
fn: async () => {
|
|
const buildDir = `${__dirname}/build`;
|
|
await utils.copyDir(`${__dirname}/app`, buildDir, {
|
|
excluded: ['node_modules'],
|
|
});
|
|
|
|
await utils.copyFile(`${__dirname}/package.json`, `${buildDir}/package.json`);
|
|
await utils.setPackagePrivateField(`${buildDir}/package.json`, false);
|
|
|
|
// await utils.copyFile(`${__dirname}/package-lock.json`, `${buildDir}/package-lock.json`);
|
|
await utils.copyFile(`${__dirname}/gulpfile.js`, `${buildDir}/gulpfile.js`);
|
|
|
|
fs.chmodSync(`${buildDir}/main.js`, 0o755);
|
|
},
|
|
};
|
|
|
|
tasks.prepareTestBuild = {
|
|
fn: async () => {
|
|
const testBuildDir = `${__dirname}/tests-build`;
|
|
|
|
await utils.copyDir(`${__dirname}/tests`, testBuildDir, {
|
|
excluded: [
|
|
'lib/',
|
|
'locales/',
|
|
'node_modules/',
|
|
'*.ts',
|
|
'*.tsx',
|
|
],
|
|
});
|
|
|
|
await fs.mkdirp(`${testBuildDir}/data`);
|
|
},
|
|
};
|
|
|
|
utils.registerGulpTasks(gulp, tasks);
|
|
|
|
|
|
gulp.task('build', gulp.series([
|
|
'prepareBuild',
|
|
]));
|