https://github.com/kevingimbel/rolluptest
Testing RollupJS
https://github.com/kevingimbel/rolluptest
Last synced: 3 months ago
JSON representation
Testing RollupJS
- Host: GitHub
- URL: https://github.com/kevingimbel/rolluptest
- Owner: KevinGimbel
- License: mit
- Created: 2016-09-09T06:12:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T06:28:15.000Z (over 8 years ago)
- Last Synced: 2025-01-17T17:35:11.800Z (4 months ago)
- Language: HTML
- Size: 521 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rollup Test
This repo holds a basic test of [Rollup](http://rollupjs.org/) to compile ReactJS Components.
### Install and run
1. Clone this repository with `git clone https://github.com/kevingimbel/rolluptest.git`
2. Install Rollup with `npm install -g rollup`
3. Install all dependencies (npm install)
4. Start a simple http server, e.g. `python -m SimpleHTTPServer`, [`goserve`](https://github.com/kevingimbel/goserve) or similar
5. Visit localhost:8000You should see a page with some cards and some images inside these cards, similar to the one below.

### Playing around
To play around run `rollup -c -w`. This tells rollup to use the config file (`-c`) and watch (`-w`) for changes. You can then make changes to the components inside the `components` directory.