https://github.com/thgh/vuejs-templates-rollup
Vue + Rollup + Buble + Livereload + dev-server + CSS extraction
https://github.com/thgh/vuejs-templates-rollup
Last synced: 4 months ago
JSON representation
Vue + Rollup + Buble + Livereload + dev-server + CSS extraction
- Host: GitHub
- URL: https://github.com/thgh/vuejs-templates-rollup
- Owner: thgh
- Created: 2016-08-27T08:56:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T01:37:36.000Z (over 6 years ago)
- Last Synced: 2025-10-08T14:44:47.132Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 19
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rollup
> A simple Vue 2.0 Rollup setup for quick prototyping.
### Usage
This is a project template for [vue-cli](https://github.com/vuejs/vue-cli).
``` bash
npm install -g vue-cli
vue init thgh/vuejs-templates-rollup my-project
cd my-project
npm install
npm run dev
```
### What's Included
- `npm run dev`
- watch for source changes
- [livereload](https://github.com/thgh/rollup-plugin-livereload) on bundle change
- [serve](https://github.com/thgh/rollup-plugin-serve) on local dev server
- `npm run watch`
- watch for source changes
- `npm run build`
- Production build with HTML/CSS/JS minification.
- extract [css](https://github.com/thgh/rollup-plugin-css-only)
### Fork It And Make Your Own
You can fork this repo to create your own boilerplate, and use it with `vue-cli`:
``` bash
vue init username/repo my-project
```