app-context/app-context

View on GitHub
src/cli/version.js

Summary

Maintainability
A
0 mins
Test Coverage
export function usage() {
  return 'version';
}

export const description = 'Prints the version of app-context';

export function execute() {
  console.log(require('../../package.json').version);
}