mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
79 lines
2.2 KiB
JavaScript
79 lines
2.2 KiB
JavaScript
const gulp = require('gulp');
|
|
const fs = require('fs-extra');
|
|
const utils = require('@joplin/tools/gulp/utils');
|
|
const { setPackagePrivateField } = require('@joplin/tools/tool-utils');
|
|
const tasks = {
|
|
// compileExtensions: {
|
|
// fn: require('../Tools/gulp/tasks/compileExtensions.js'),
|
|
// },
|
|
// copyLib: require('../Tools/gulp/tasks/copyLib'),
|
|
// tsc: require('../Tools/gulp/tasks/tsc'),
|
|
// updateIgnoredTypeScriptBuild: require('../Tools/gulp/tasks/updateIgnoredTypeScriptBuild'),
|
|
};
|
|
|
|
// async function makePackagePublic(filePath) {
|
|
// const text = await fs.readFile(filePath, 'utf8');
|
|
// const obj = JSON.parse(text);
|
|
// delete obj.private;
|
|
// await fs.writeFile(filePath, JSON.stringify(obj), 'utf8');
|
|
// }
|
|
|
|
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 makePackagePublic(`${buildDir}/package.json`);
|
|
await 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',
|
|
],
|
|
});
|
|
|
|
// const rootDir = utils.rootDir();
|
|
|
|
// await utils.copyDir(`${rootDir}/packages/app-mobile/lib`, `${testBuildDir}/lib`, {
|
|
// excluded: [
|
|
// `${rootDir}/packages/renderer/node_modules`,
|
|
// ],
|
|
// });
|
|
// await utils.copyDir(`${rootDir}/packages/app-mobile/locales`, `${testBuildDir}/locales`);
|
|
await fs.mkdirp(`${testBuildDir}/data`);
|
|
},
|
|
};
|
|
|
|
utils.registerGulpTasks(gulp, tasks);
|
|
|
|
|
|
gulp.task('build', gulp.series([
|
|
'prepareBuild',
|
|
// 'compileExtensions',
|
|
// 'copyLib',
|
|
]));
|
|
|
|
// gulp.task('buildTests', gulp.series([
|
|
// // 'prepareTestBuild',
|
|
// // 'compileExtensions',
|
|
// // 'copyLib',
|
|
// ]));
|