All Projects → egoist → rollup-loader

egoist / rollup-loader

Licence: MIT license
Rollup does what it can do, and let Webpack finish the job.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to rollup-loader

Workflow
一个工作流平台
Stars: ✭ 1,888 (+2095.35%)
Mutual labels:  rollup, loader
postcss-font-grabber
A postcss plugin, it grabs remote font files and update your CSS, just like that.
Stars: ✭ 26 (-69.77%)
Mutual labels:  rollup, loader
favicon-canvas-loader
Create and display a circular loading <canvas> animation as a webpage favicon.
Stars: ✭ 83 (-3.49%)
Mutual labels:  loader
r1cs-tutorial
Tutorial for writing constraints in the `arkworks` framework
Stars: ✭ 74 (-13.95%)
Mutual labels:  rollup
rprogress
React ajax loader progress bar with clear API
Stars: ✭ 12 (-86.05%)
Mutual labels:  loader
react-intl-loader
Async react-intl locale data loader for webpack
Stars: ✭ 46 (-46.51%)
Mutual labels:  loader
rocket
The modern web setup for static sites with a sprinkle of JavaScript
Stars: ✭ 169 (+96.51%)
Mutual labels:  rollup
Prevailer-orientation-support-library-for-Android
Prevailer is a simple android library that helps in preserving object instances across orientation change in android and is JAVA 8 and MVP ready.
Stars: ✭ 17 (-80.23%)
Mutual labels:  loader
architectury-api
An intermediary api aimed at easing development of multiplatform mods.
Stars: ✭ 139 (+61.63%)
Mutual labels:  loader
vue-methods-promise
Let Vue methods support return Promise
Stars: ✭ 35 (-59.3%)
Mutual labels:  rollup
unplugin-vue
✨ Transform Vue 3 SFC to JavaScript. Supports Vite, esbuild, Rollup and Webpack.
Stars: ✭ 38 (-55.81%)
Mutual labels:  rollup
vue-frag-plugin
Webpack/Rollup/Vite plugin to add multiple root-node support to Vue 2 SFCs
Stars: ✭ 37 (-56.98%)
Mutual labels:  rollup
KVSpinnerView
KVSpinnerView is highly customizable progress HUD
Stars: ✭ 37 (-56.98%)
Mutual labels:  loader
memory-module-loader
An implementation of a Windows loader that can load dynamic-linked libraries (DLLs) directly from memory
Stars: ✭ 111 (+29.07%)
Mutual labels:  loader
react-component-lib
Boilerplate repo for creating npm packages with React components written in TypeScript and using styled-components
Stars: ✭ 69 (-19.77%)
Mutual labels:  rollup
faker
A kotlin extension to load images asynchronously on android
Stars: ✭ 58 (-32.56%)
Mutual labels:  loader
moonlight-admin
Easy to use admin panel, designed for cheat loaders.
Stars: ✭ 29 (-66.28%)
Mutual labels:  loader
fly-helper
It's a Tool library, method collection
Stars: ✭ 21 (-75.58%)
Mutual labels:  rollup
npm-es-modules
Breakdown of 7 different ways to use ES modules with npm today.
Stars: ✭ 67 (-22.09%)
Mutual labels:  rollup
rollup-plugin-swc
Rollup plugin to compile bundles with the SWC.
Stars: ✭ 59 (-31.4%)
Mutual labels:  rollup

rollup-loader

NPM version Build Status

How does it work

It uses the rollup-plugin-memory to accept input file from webpack and returns processed result and sourcemaps.

Usage

// webpack.config.js
module.exports = {
  module: {
    rules: [{
      test: /\.js$/,
      loader: 'rollup-loader',
      options: [/* custom rollup plugins */]
      // or directly pass rollup options
      // options: { plugins: [] }
    }]
  }
}

Check out Rollup JavaScript API for option reference.

License

MIT © EGOIST

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].