#!/usr/bin/env node /* * notion-enhancer * (c) 2020 dragonwocky (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('-n, --no', ': skip prompts (may cause failures)'); cli.option('-d, --dev', ': show detailed error messages (for debug purposes)'); 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 ? 'y' : options.no ? 'n' : undefined, 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')({ delete_data: options.yes ? 'y' : options.no ? 'n' : undefined, friendly_errors: !options.dev, }); console.info('=== END OF LOG ==='); }); cli .command('check', ': check the current state of the notion app') .action(async (options) => { try { const status = await require('./pkg/check.js')(); console.info(options.dev ? status : status.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/notion-enhancer/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();