Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.

Copy README and LICENSE to dist folder

Changed files
+12
scripts
rollup
+12
scripts/rollup/config.js
···
fileName: 'package.json',
source: packageMetadata,
});
+
+
this.emitFile({
+
type: 'asset',
+
fileName: 'README.md',
+
source: await fs.readFile('README.md'),
+
});
+
+
this.emitFile({
+
type: 'asset',
+
fileName: 'LICENSE',
+
source: await fs.readFile('./LICENSE'),
+
});
},
async renderChunk(_code, { fileName }) {