rollup-plugin-weblinks

1.0.2 • Public • Published

rollup-plugin-weblinks

Plugin for Rollup to bundle web-based resources

This is how you can use it:

const rollup = require('rollup');
const rollupPluginWeblinks = require('rollup-plugin-weblinks');
 
const inputOptions = {
  input: 'https://raw.githubusercontent.com/enlightenmentor/pc-build/master/public/app.js',
  plugins: [ rollupPluginWeblinks() ]
};
const outputOptions = {
  file: 'test/bundle.js',
  format: 'iife',
}
 
async function build() {
  // create a bundle
  const bundle = await rollup.rollup(inputOptions);
 
  // generate code and a sourcemap
  const { code, map } = await bundle.generate(outputOptions);
 
  // or write the bundle to disk
  await bundle.write(outputOptions);
}
 
build();

Readme

Keywords

Package Sidebar

Install

npm i rollup-plugin-weblinks

Weekly Downloads

2

Version

1.0.2

License

MIT

Last publish

Collaborators

  • enlightenmentor