Skip to content

Commit

Permalink
Merge pull request #15 from rogeriochaves/update-to-0.19-final
Browse files Browse the repository at this point in the history
Update to elm 0.19 final
  • Loading branch information
rogeriochaves authored Sep 3, 2018
2 parents 4c5a075 + 784b20e commit 9af075e
Show file tree
Hide file tree
Showing 31 changed files with 4,060 additions and 4,990 deletions.
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

0 comments on commit 9af075e

Please sign in to comment.