https://github.com/thecodechef/rollup-simple
https://github.com/thecodechef/rollup-simple
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thecodechef/rollup-simple
- Owner: thecodechef
- Created: 2017-11-19T05:11:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-19T05:26:09.000Z (over 8 years ago)
- Last Synced: 2025-01-20T18:45:38.146Z (over 1 year ago)
- Language: Vue
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rollup-simple
> A simple Vue 2.0 Rollup & `rollup-plugin-vue` setup for quick prototyping. Note this template is not suitable for production - for that you may want to wait for an official 2.0 webpack template.
### Usage
This is a project template for [vue-cli](https://github.com/vuejs/vue-cli).
``` bash
$ npm install -g vue-cli
$ vue init rollup-simple my-project
$ cd my-project
$ npm install
$ npm run dev
```
### What's Included
- `npm run dev`: Rollup + `rollup-plugin-vue` with proper config for source maps.
- `npm run build`: build with HTML/CSS/JS minification.
For detailed explanation on how things work, consult the [docs for rollup-plugin-vue](http://vuejs.github.io/rollup-plugin-vue).
### 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
```