UNPKG

@greenwood/cli

Version:
19 lines (16 loc) 412 B
const greenwoodPluginCopyManifestJson = [ { type: "copy", name: "plugin-copy-manifest-json", provider: (compilation) => { const { scratchDir, outputDir } = compilation.context; return [ { from: new URL("./manifest.json", scratchDir), to: new URL("./manifest.json", outputDir), }, ]; }, }, ]; export { greenwoodPluginCopyManifestJson };