mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-28 18:28:02 +08:00
feat: support calendar (#56)
* chore: modified title sync * chore: replace console.log to console.debug * feat: add FullCalendar dependencies and improve code organization * chore: update view name bugs * chore: support no date row * chore: layout by created time and modified time * chore: adjust time * chore: pnpm install * chore: fix something
This commit is contained in:
@@ -28,7 +28,7 @@ if (!fs.existsSync(fullTargetPath)) {
|
||||
|
||||
if (fs.existsSync(fullTargetPath)) {
|
||||
// unlink existing symlink
|
||||
console.log(chalk.yellow(`unlinking existing symlink: `) + chalk.blue(`${fullTargetPath}`));
|
||||
console.debug(chalk.yellow(`unlinking existing symlink: `) + chalk.blue(`${fullTargetPath}`));
|
||||
fs.unlinkSync(fullTargetPath);
|
||||
}
|
||||
|
||||
@@ -38,6 +38,6 @@ fs.symlink(fullSourcePath, fullTargetPath, 'junction', (err) => {
|
||||
console.error(chalk.red(`error creating symlink: ${err.message}`));
|
||||
process.exit(1);
|
||||
}
|
||||
console.log(chalk.green(`symlink created: `) + chalk.blue(`${fullSourcePath}`) + ' -> ' + chalk.blue(`${fullTargetPath}`));
|
||||
console.debug(chalk.green(`symlink created: `) + chalk.blue(`${fullSourcePath}`) + ' -> ' + chalk.blue(`${fullTargetPath}`));
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user