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

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -3
+2 -3
scripts/rollup/build.js
··· 5 5 const execa = require('execa'); 6 6 7 7 const workspaceRoot = path.resolve(__dirname, '../../'); 8 - const rollupConfig = path.resolve(__dirname, './config.js'); 9 8 10 9 let packages = glob('{packages,exchanges}/*/package.json').map(pkg => { 11 10 return path.resolve(pkg, '../'); ··· 26 25 27 26 try { 28 27 await execa( 29 - 'rollup', 30 - ['--silent', '-c', rollupConfig], 28 + 'run-s', 29 + ['build'], 31 30 { 32 31 preferLocal: true, 33 32 localDir: workspaceRoot,