UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

10 lines (9 loc) 303 B
import path from 'node:path'; import fs from 'fs-extra'; import yaml from 'js-yaml'; export async function loadManifest(manifestFile) { if (manifestFile.match(/.js$/)) { return await import(path.resolve(manifestFile)); } return yaml.load(await fs.readFile(manifestFile, 'utf-8')); }