UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

10 lines (8 loc) 287 B
import { resolve } from 'path'; export const getAssetsDir = (packageType, rootPath) => { return ['vue', 'wp'].includes(packageType) ? resolve(rootPath, 'src/assets') : ['next', 'nuxt'].includes(packageType) ? resolve(rootPath, 'assets') : ''; };