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.1 #104

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,7 @@ os:

env:
matrix:
- ELM_VERSION=0.19.0-no-deps
- ELM_VERSION=0.19.1-3

before_install:
- rm -rf ~/.elm
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,5 +1,5 @@
environment:
ELM_VERSION: "0.19.0-bugfix6"
ELM_VERSION: "0.19.1-3"
matrix:
- nodejs_version: "12.0"
- nodejs_version: "10.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/elm.json
Expand Up @@ -3,7 +3,7 @@
"source-directories": [
"."
],
"elm-version": "0.19.0",
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"elm/browser": "1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test/compile.ts
Expand Up @@ -73,7 +73,7 @@ describe("#compileToString", function () {
expect(err).to.be.an('error');
expect(String(err))
.to.contain("Compilation failed")
.and.contain("PARSE ERROR");
.and.contain("MISSING EXPRESSION");
});
});

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/Bad.elm
@@ -1,4 +1,4 @@
module Bad
module Bad exposing (..)


main =
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/SimplestMain.elm
@@ -1,4 +1,7 @@
module SimplestMain exposing (..)

import Html


main =
Html.text "Hello, World!"
2 changes: 1 addition & 1 deletion test/fixtures/elm.json
Expand Up @@ -3,7 +3,7 @@
"source-directories": [
"."
],
"elm-version": "0.19.0",
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"elm/browser": "1.0.0",
Expand Down