How to use the @statusfy/core/package.json.version function in @statusfy/core

To help you get started, we’ve selected a few @statusfy/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bazzite / statusfy / packages / @statusfy / cli / index.js View on Github external
}

const {
  init,
  dev,
  build,
  generate,
  start,
  newIncident,
  deleteIncident,
  updateIncident
} = require('@statusfy/core/lib')
const sourceDir = path.resolve('.')

program
  .version(pkg.version)
  .usage(' [options]')

program
  .command('init')
  .description('Create a base project')
  .option('-d, --dir ', 'specify the installation directory')
  .action(({ dir }) => {
    const outDir = dir ? path.resolve(dir) : null
    wrapCommand(init)(sourceDir, { outDir })
  })

program
  .command('dev')
  .description('Starts the application in development mode (hot-code reloading, error reporting, etc.).')
  .option('-p, --port ', 'use specified port (default: 3000)')
  .option('-s, --ssr', 'force SSR')

@statusfy/core

Core of Statusfy

Apache-2.0
Latest version published 4 years ago

Package Health Score

50 / 100
Full package analysis