UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

7 lines (5 loc) 241 B
import { PACKAGE_TYPES } from '../consts/packageTypes.js'; export const getPackageType = (packageJson) => { if (!packageJson || !packageJson['forwardslash']) return 'unknown'; return PACKAGE_TYPES[packageJson.forwardslash].type; };