rollup-starter-app v1.0.8
rollup-starter-app
This repo contains a bare-bones example of how to create an application using Rollup, including importing a module from node_modules and converting it from CommonJS.
See also https://github.com/rollup/rollup-starter-lib
Getting started
Clone this repository and install its dependencies:
git clone https://github.com/rollup/rollup-starter-app
cd rollup-starter-app
npm installThe public/index.html file contains a <script src='bundle.js'> tag, which means we need to create public/bundle.js. The rollup.config.js file tells Rollup how to create this bundle, starting with src/main.js and including all its dependencies, including date-fns.
npm run build builds the application to public/bundle.js, along with a sourcemap file for debugging.
npm start launches a server, using serve. Navigate to localhost:5000.
npm run dev (run it in a separate terminal to npm start) will continually rebuild the application as your source files change, using rollup-watch.
License
MIT.