UNPKG

grapi-cli

Version:

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

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