grapi-cli
Version:
a cli tool to generate loopback 4 applications with extra features like caching & fuzzy search
10 lines (9 loc) • 324 B
JavaScript
import { Command } from '@oclif/core';
import { patches } from '../patches/pre-relation-patches.js';
import { applyPatches } from '../utils/index.js';
export default class PreRelationPatches extends Command {
static description = 'execute pre relation patches.';
async run() {
applyPatches(patches);
}
}