UNPKG

grapi-cli

Version:

a cli tool to generate loopback 4 applications with extra features like caching & fuzzy search

10 lines (9 loc) 298 B
import { Command } from '@oclif/core'; import { patches } from '../patches/pre-patches.js'; import { applyPatches } from '../utils/index.js'; export default class PrePatches extends Command { static description = 'execute pre patches.'; async run() { applyPatches(patches); } }