https://github.com/lucamug/elm-parcel-example
https://github.com/lucamug/elm-parcel-example
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucamug/elm-parcel-example
- Owner: lucamug
- License: mit
- Created: 2019-06-11T08:02:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T06:17:23.000Z (over 3 years ago)
- Last Synced: 2024-11-04T13:38:00.696Z (over 1 year ago)
- Language: Elm
- Size: 856 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - lucamug/elm-parcel-example - (Elm)
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.