Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to elm 0.19 final #15

Merged
merged 6 commits into from
Sep 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed boilerplate/bin/elm19-osx
Binary file not shown.
29 changes: 17 additions & 12 deletions boilerplate/elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,26 @@
],
"elm-version": "0.19.0",
"dependencies": {
"elm/browser": "1.0.0",
"elm/core": "1.0.0",
"elm/html": "1.0.0",
"elm/http": "1.0.0",
"elm/json": "1.0.0",
"elm/url": "1.0.0",
"krisajenkins/remotedata": "5.0.0",
"mdgriffith/style-elements": "5.0.0"
},
"test-dependencies": {},
"do-not-edit-this-by-hand": {
"transitive-dependencies": {
"direct": {
"Fresheyeball/elm-return": "7.0.0",
"elm/browser": "1.0.0",
"elm/core": "1.0.0",
"elm/html": "1.0.0",
"elm/http": "1.0.0",
"elm/json": "1.0.0",
"elm/url": "1.0.0",
"krisajenkins/remotedata": "5.0.0",
"mdgriffith/style-elements": "5.0.0"
},
"indirect": {
"Skinney/murmur3": "2.0.7",
"elm/regex": "1.0.0",
"elm/time": "1.0.0",
"elm/virtual-dom": "1.0.0"
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
}
}
2,464 changes: 1,215 additions & 1,249 deletions boilerplate/package-lock.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions boilerplate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@
"scripts": {
"start": "node server.js",
"start:prod": "NODE_ENV=production node server.js",
"build": "webpack --mode=production --progress --json > build/stats.json",
"install": "cp ./bin/elm19-osx ./node_modules/.bin/elm"
"build": "mkdir build && webpack --mode=production --progress --json > build/stats.json"
},
"author": "",
"license": "MIT",
"devDependencies": {
"elm-webpack-loader": "git+https://github.com/xtian/elm-webpack-loader.git#0.19",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.3",
"elm-webpack-loader": "^5.0.0",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3"
},
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.3",
"jsdom": "^11.11.0",
"jsdom": "^11.12.0",
"yargs": "^12.0.1"
}
}
}
4 changes: 2 additions & 2 deletions boilerplate/src/Cats/Update.elm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module Cats.Update exposing (..)
module Cats.Update exposing (init, update)

import Cats.Data exposing (..)
import Cats.Types exposing (..)
import Helpers.Return exposing (Return, return)
import RemoteData exposing (..)
import Return exposing (Return, return)
import Types


Expand Down
4 changes: 2 additions & 2 deletions boilerplate/src/Counter/Update.elm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Counter.Update exposing (..)
module Counter.Update exposing (init, update)

import Counter.Types exposing (..)
import Helpers.Return exposing (Return, return)
import RemoteData exposing (..)
import Return exposing (Return, return)
import Types


Expand Down
47 changes: 0 additions & 47 deletions boilerplate/src/Helpers/Respond.elm

This file was deleted.

Loading