An open API service indexing awesome lists of open source software.

https://github.com/benthepoet/elm-parcel-example

An example Elm application built with Parcel.
https://github.com/benthepoet/elm-parcel-example

Last synced: 4 months ago
JSON representation

An example Elm application built with Parcel.

Awesome Lists containing this project

README

          

# elm-parcel-example
An example Elm application built with Parcel.

## Running the application
To run the example application first install the dependencies.

```bash
npm install
```

Then just run the following command and `parcel` will serve the application.

```bash
npx parcel src/index.html
```

## Building for production
When you want to build the optimized production files you just run the following command.

```bash
npx parcel build src/index.html
```

Afterwards the compiled production assets will be located in the `dist` folder.