├── .gitignore ├── LICENSE ├── README.md ├── elm-package.json ├── gulpfile.js ├── main-electron.js ├── package.json └── src ├── index.html ├── main.elm └── style.scss /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | node_modules/ 3 | app/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/README.md -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/elm-package.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/gulpfile.js -------------------------------------------------------------------------------- /main-electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/main-electron.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/src/main.elm -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/elmctron/HEAD/src/style.scss --------------------------------------------------------------------------------