mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 12:49:03 +00:00
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://dragonwocky.me/notion-enhancer) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const cli = require('cac')('notion-enhancer'),
|
|
{ EnhancerError } = require('./pkg/helpers.js');
|
|
|
|
// === title ===
|
|
// ...information
|
|
// * warning
|
|
// > prompt
|
|
// -- response
|
|
// ~~ exit
|
|
// ### error ###
|
|
|
|
cli.option('-y, --yes', ': skip prompts (may overwrite data)');
|
|
cli.option('-d, --dev', ': show detailed error messages');
|
|
|
|
cli
|
|
.command('apply', ': add the enhancer to the notion app')
|
|
.action(async (options) => {
|
|
console.info('=== NOTION ENHANCEMENT LOG ===');
|
|
await require('./pkg/apply.js')({
|
|
overwrite_version: options.yes,
|
|
friendly_errors: !options.dev,
|
|
});
|
|
console.info('=== END OF LOG ===');
|
|
});
|
|
cli
|
|
.command('remove', ': return notion to its pre-enhanced/pre-modded state')
|
|
.action(async (options) => {
|
|
console.info('=== NOTION RESTORATION LOG ===');
|
|
await require('./pkg/remove.js')({
|
|
overwrite_asar: options.yes,
|
|
delete_data: options.yes,
|
|
friendly_errors: !options.dev,
|
|
});
|
|
console.info('=== END OF LOG ===');
|
|
});
|
|
cli
|
|
.command('check', ': check the current state of the notion app')
|
|
.action(async (options) => {
|
|
try {
|
|
console.info((await require('./pkg/check.js')()).msg);
|
|
} catch (err) {
|
|
console.error(err instanceof EnhancerError ? err.message : err);
|
|
}
|
|
});
|
|
|
|
let helpCalled = false;
|
|
cli.globalCommand.option('-h, --help', ': display usage information');
|
|
cli.globalCommand.helpCallback = (sections) => {
|
|
sections[0].body += '\nhttps://github.com/dragonwocky/notion-enhancer';
|
|
helpCalled = true;
|
|
};
|
|
cli.showHelpOnExit = true;
|
|
|
|
cli.globalCommand.option('-v, --version', ': display version number');
|
|
cli.globalCommand.versionNumber = require('./package.json').version;
|
|
cli.showVersionOnExit = true;
|
|
|
|
cli.parse();
|
|
|
|
if (!cli.matchedCommand && !helpCalled && !cli.options.version)
|
|
cli.outputHelp();
|