All Projects → vuejs → Rollup Plugin Vue

vuejs / Rollup Plugin Vue

Licence: mit
Roll .vue files

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to Rollup Plugin Vue

React Modern Library Boilerplate
Boilerplate for publishing modern React modules with Rollup
Stars: ✭ 285 (-61.85%)
Mutual labels:  rollup
Esri Loader
A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications
Stars: ✭ 400 (-46.45%)
Mutual labels:  rollup
Angular Seed
🌱 [Deprecated] Extensible, reliable, modular, PWA ready starter project for Angular (2 and beyond) with statically typed build and AoT compilation
Stars: ✭ 4,681 (+526.64%)
Mutual labels:  rollup
Ionic Boilerplate
✨ An Ionic Starter kit featuring Tests, E2E, Karma, Protractor, Jasmine, Istanbul, Gitlab CI, Automatic IPA and APK, TypeScript 2, TsLint, Codelyzer, Typedoc, Yarn, Rollup, and Webpack 2
Stars: ✭ 309 (-58.63%)
Mutual labels:  rollup
Vudash
Powerful, Flexible, Open Source dashboards for anything
Stars: ✭ 363 (-51.41%)
Mutual labels:  rollup
Create React Library
⚡CLI for creating reusable react libraries.
Stars: ✭ 4,554 (+509.64%)
Mutual labels:  rollup
Vue Electron Template
An Electron & Vue.js template with Hot-reloading enabled and common Vue plugins, dev, debug and build scripts configured.
Stars: ✭ 260 (-65.19%)
Mutual labels:  rollup
Microbundle
📦 Zero-configuration bundler for tiny modules.
Stars: ✭ 6,622 (+786.48%)
Mutual labels:  rollup
Wmr
👩‍🚀 The tiny all-in-one development tool for modern web apps.
Stars: ✭ 4,372 (+485.27%)
Mutual labels:  rollup
Rollup Plugin Postcss
Seamless integration between Rollup and PostCSS.
Stars: ✭ 507 (-32.13%)
Mutual labels:  rollup
React Component Library
A project skeleton to get your very own React Component Library up and running using Rollup, Typescript, SASS + Storybook
Stars: ✭ 313 (-58.1%)
Mutual labels:  rollup
Mercury Parser
📜 Extract meaningful content from the chaos of a web page
Stars: ✭ 4,025 (+438.82%)
Mutual labels:  rollup
Ts Monorepo
Template for setting up a TypeScript monorepo
Stars: ✭ 459 (-38.55%)
Mutual labels:  rollup
React Spectrum
Generate colorful text placeholders 🎨
Stars: ✭ 289 (-61.31%)
Mutual labels:  rollup
Rollup Plugin Typescript2
Rollup plugin for typescript with compiler errors.
Stars: ✭ 594 (-20.48%)
Mutual labels:  rollup
Rollup Plugin Ts
A Typescript Rollup plugin that bundles declarations and respects Browserslists
Stars: ✭ 273 (-63.45%)
Mutual labels:  rollup
Rollup Plugin Visualizer
📈⚖️ Visuallize your bundle
Stars: ✭ 405 (-45.78%)
Mutual labels:  rollup
Jslib Base
A modern JavaScript|Typescript library scaffolding, modularity, purity & extras
Stars: ✭ 721 (-3.48%)
Mutual labels:  rollup
Serverless Plugin Typescript
Serverless plugin for zero-config Typescript support
Stars: ✭ 611 (-18.21%)
Mutual labels:  rollup
Preact Pwa
Super fast progressive web app with small footprint & minimal dependancies
Stars: ✭ 507 (-32.13%)
Mutual labels:  rollup

[email protected]

Roll Vue 3 SFCs with Rollup.

import vuePlugin from 'rollup-plugin-vue'

export default {
  plugins: [
    vuePlugin(/* options */)
  ]
}

Options

export interface Options {
  include: string | RegExp | (string | RegExp)[]
  exclude: string | RegExp | (string | RegExp)[]

  // use 'node' if compiling for SSR
  target: 'node' | 'browser'

  // if true, will attach __file to component even in production.
  // defaults to false.
  exposeFilename: boolean

  // if true, handle preprocessors directly instead of delegating to other
  // rollup plugins
  // defaults to false.
  preprocessStyles?: boolean
  cssModulesOptions?: {
    // https://github.com/css-modules/postcss-modules#usage
  }

  // these are simply passed on to @vue/compiler-sfc
  compiler
  compilerOptions
  transformAssetUrls
  preprocessCustomRequire
}
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].