How to use the rollup.config.js function in rollup

To help you get started, we’ve selected a few rollup examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github treshugart / yocss / conartist.js View on Github external
['rollup.config.js']() {
      return { ...{ name: 'yocss' }, ...rollup['rollup.config.js']() };
    }
  }
github skatejs / renderer-preact / conartist.js View on Github external
'rollup.config.js'() {
    return Object.assign({}, rollup()['rollup.config.js'](), {
      globals: {
        preact: 'Preact'
      },
      name: 'skateRendererPreact'
    });
  }
});