Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

Update scripts/rollup/build.js to not assume Rollup builds

Changed files
+2 -3
scripts
rollup
+2 -3
scripts/rollup/build.js
···
const execa = require('execa');
const workspaceRoot = path.resolve(__dirname, '../../');
-
const rollupConfig = path.resolve(__dirname, './config.js');
let packages = glob('{packages,exchanges}/*/package.json').map(pkg => {
return path.resolve(pkg, '../');
···
try {
await execa(
-
'rollup',
-
['--silent', '-c', rollupConfig],
+
'run-s',
+
['build'],
{
preferLocal: true,
localDir: workspaceRoot,