├── .gitignore ├── README.md ├── elm-package.json ├── package.json ├── src ├── elm │ ├── Components │ │ └── Hello.elm │ └── Main.elm ├── favicon.ico └── static │ ├── img │ └── elm.jpg │ ├── index.html │ ├── index.js │ └── styles │ └── main.scss └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | node_modules/ 3 | tmp/ 4 | dist/ 5 | yarn.lock 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/README.md -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/elm-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/elm/Components/Hello.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/elm/Components/Hello.elm -------------------------------------------------------------------------------- /src/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/elm/Main.elm -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/static/img/elm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/static/img/elm.jpg -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/static/index.js -------------------------------------------------------------------------------- /src/static/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/src/static/styles/main.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/elm-webpack-starter/HEAD/webpack.config.js --------------------------------------------------------------------------------