mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
67 lines
2.0 KiB
JavaScript
67 lines
2.0 KiB
JavaScript
const gulp = require('gulp');
|
|
const glob = require('glob');
|
|
const ts = require('gulp-typescript');
|
|
const execa = require('execa');
|
|
const utils = require('./Tools/gulp/utils');
|
|
|
|
const tasks = {
|
|
copyLib: require('./Tools/gulp/tasks/copyLib'),
|
|
};
|
|
|
|
const tsProject = ts.createProject('tsconfig.json');
|
|
|
|
const tscTaskSrc = [
|
|
'ReactNativeClient/**/*.tsx',
|
|
'ReactNativeClient/**/*.ts',
|
|
'ElectronClient/**/*.tsx',
|
|
'ElectronClient/**/*.ts',
|
|
'CliClient/**/*.tsx',
|
|
'CliClient/**/*.ts',
|
|
];
|
|
|
|
const tscTask = function() {
|
|
return tsProject.src()
|
|
.pipe(tsProject())
|
|
.js.pipe(gulp.dest('./'));
|
|
};
|
|
|
|
const updateIgnoredTypeScriptBuildTask = async function() {
|
|
const tsFiles = glob.sync(`${__dirname}{/**/*.ts,/**/*.tsx}`, {
|
|
ignore: [
|
|
'**/node_modules/**',
|
|
'**/.git/**',
|
|
'**/ElectronClient/lib/**',
|
|
'**/CliClient/build/lib/**',
|
|
'**/ElectronClient/dist/**',
|
|
],
|
|
}).map(f => f.substr(__dirname.length + 1));
|
|
|
|
const ignoredFiles = tsFiles.map(f => {
|
|
const s = f.split('.');
|
|
s.pop();
|
|
return `${s.join('.')}.js`;
|
|
});
|
|
|
|
const regex = /(# AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD)[\s\S]*(# AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD)/;
|
|
const replacement = `$1\n${ignoredFiles.join('\n')}\n$2`;
|
|
|
|
await utils.replaceFileText(`${__dirname}/.gitignore`, regex, replacement);
|
|
await utils.replaceFileText(`${__dirname}/.eslintignore`, regex, replacement);
|
|
};
|
|
|
|
gulp.task('tsc', tscTask);
|
|
gulp.task('copyLib', tasks.copyLib.fn);
|
|
gulp.task('updateIgnoredTypeScriptBuild', updateIgnoredTypeScriptBuildTask);
|
|
|
|
gulp.task('watch', function() {
|
|
gulp.watch(tasks.copyLib.src, tasks.copyLib.fn);
|
|
gulp.watch(tscTaskSrc, updateIgnoredTypeScriptBuildTask);
|
|
|
|
// For watching, we use the actual tsc tool because it's more robust and
|
|
// doesn't crash when there's an error
|
|
const promise = execa('npx', ['tsc', '--watch', '--project', 'tsconfig.json'], { cwd: `${__dirname}` });
|
|
promise.stdout.pipe(process.stdout);
|
|
});
|
|
|
|
gulp.task('build', gulp.series('copyLib', 'tsc', 'updateIgnoredTypeScriptBuild'));
|