Tilted sphere with longitudinal stripes Modern Web Guides Docs Blog Toggle darkmode

Plugins: Rollup

Adapter for using rollup plugins in Web Dev Server and Web Test Runner.

Web Dev Server plugins and rollup plugins share a very similar API, making it possible to reuse rollup plugins inside Web Dev Server with an adapter.

Since the dev server doesn't run an actual rollup build, only rollup plugins that do single file transformations can be reused.

Usage

Install the package:

npm i --save-dev @web/dev-server-rollup

Import the rollup plugin and the fromRollup function in your configuration file. Then, wrap the rollup plugin with the adapter function:

import rollupReplace from '@rollup/plugin-replace';
import { fromRollup } from '@web/dev-server-rollup';

const replace = fromRollup(rollupReplace);

export default {
  plugins: [replace({ include: ['src/**/*.js'], __environment__: '"development"' })],
};

Performance

Some rollup plugins do expensive operations. During development, this matters a lot more than during a production build. You are therefore required to always set the include and/or exclude options on rollup plugins.

non-standard file types

The rollup build process assumes that any imported files are meant to be compiled to JS, Web Dev Server serves many different kinds of files to the browser. If you are transforming a non-standard filetype to JS, for example .json files, you need to instruct the server to handle it as a JS file:

import json from '@rollup/plugin-json';
import { rollupAdapter } from '@web/dev-server-rollup';

export default {
  mimeTypes: {
    // serve all json files as js
    '**/*.json': 'js',
    // serve .module.css files as js
    '**/*.module.css': 'js',
  },
  plugins: [rollupAdapter(json())],
};

Compatibility with rollup plugins

Since the dev server doesn't do any bundling, only the following lifecycle hooks from rollup are called:

  • options
  • buildStart
  • resolveId
  • load
  • transform

Plugins that use other lifecycle hooks are mostly build optimizations and are not interesting during development.

The following rollup plugins have been tested to work correctly:

The following rollup plugins don't work correctly at the moment:

Bundling

We export an experimental plugin for on the fly bundling with rollup. This is useful when you rely on some specific rollup logic, or when running tests remotely and the performance benefits outweigh the bundling times. Debugging a bundled application is harder.

To use the plugin, add rollupBundlePlugin to your config and set your test files as input.

import { rollupBundlePlugin } from '@web/dev-server-rollup';

export default {
  plugins: [
    rollupBundlePlugin({
      rollupConfig: {
        input: ['test/foo.test.js', 'test/bar.test.js'],
      },
    }),
  ],
};