@shopify/cli
Version:
A CLI tool to build for the Shopify platform
10 lines (9 loc) • 395 B
TypeScript
import { Hook } from '@oclif/core';
/**
* Inlined version of the `\@shopify/app` init hook.
* The original hook imports `\@shopify/app` → local-storage → cli-kit error chain (~1s).
* This inlined version avoids those imports entirely. It lazily imports the
* LocalStorage class only at call time, and uses Node's native crypto.
*/
declare const init: Hook<'init'>;
export default init;