-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #10. I'm intending to also rewrite the error messages to be a bit easier to understand rather than just copying stuff from NoDebug.
- Loading branch information
Showing
14 changed files
with
1,497 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
{ | ||
"type": "package", | ||
"name": "gampleman/elm-review-derive", | ||
"summary": "Generate code for json encoders/decoders, codecs, fuzzers, generators, and more", | ||
"license": "MIT", | ||
"version": "1.0.0", | ||
"exposed-modules": [ | ||
"NoDebug.TodoItForMe", | ||
"CodeGenerator", | ||
"CodeGenerator.Test", | ||
"TypePattern", | ||
"ResolvedType" | ||
], | ||
"elm-version": "0.19.0 <= v < 0.20.0", | ||
"dependencies": { | ||
"elm/core": "1.0.2 <= v < 2.0.0", | ||
"elm/json": "1.1.3 <= v < 2.0.0", | ||
"elm/project-metadata-utils": "1.0.1 <= v < 2.0.0", | ||
"elm-explorations/test": "2.0.0 <= v < 3.0.0", | ||
"elmcraft/core-extra": "2.0.0 <= v < 3.0.0", | ||
"erlandsona/assoc-set": "1.1.0 <= v < 2.0.0", | ||
"jfmengels/elm-review": "2.4.0 <= v < 3.0.0", | ||
"pzp1997/assoc-list": "1.0.0 <= v < 2.0.0", | ||
"stil4m/elm-syntax": "7.2.1 <= v < 8.0.0", | ||
"the-sett/elm-pretty-printer": "3.0.0 <= v < 4.0.0", | ||
"the-sett/elm-syntax-dsl": "6.0.1 <= v < 7.0.0" | ||
}, | ||
"test-dependencies": {} | ||
"type": "package", | ||
"name": "gampleman/elm-review-derive", | ||
"summary": "Generate code for json encoders/decoders, codecs, fuzzers, generators, and more", | ||
"license": "MIT", | ||
"version": "1.0.0", | ||
"exposed-modules": [ | ||
"NoDebug.TodoItForMe", | ||
"CodeGenerator", | ||
"CodeGenerator.Test", | ||
"TypePattern", | ||
"ResolvedType" | ||
], | ||
"elm-version": "0.19.0 <= v < 0.20.0", | ||
"dependencies": { | ||
"elm/core": "1.0.2 <= v < 2.0.0", | ||
"elm/json": "1.1.3 <= v < 2.0.0", | ||
"elm/project-metadata-utils": "1.0.1 <= v < 2.0.0", | ||
"elm-explorations/test": "2.0.0 <= v < 3.0.0", | ||
"elmcraft/core-extra": "2.0.0 <= v < 3.0.0", | ||
"erlandsona/assoc-set": "1.1.0 <= v < 2.0.0", | ||
"jfmengels/elm-review": "2.4.0 <= v < 3.0.0", | ||
"pzp1997/assoc-list": "1.0.0 <= v < 2.0.0", | ||
"stil4m/elm-syntax": "7.2.1 <= v < 8.0.0", | ||
"the-sett/elm-pretty-printer": "3.0.0 <= v < 4.0.0", | ||
"the-sett/elm-syntax-dsl": "6.0.1 <= v < 7.0.0" | ||
}, | ||
"test-dependencies": { | ||
"BrianHicks/elm-csv": "4.0.0 <= v < 5.0.0", | ||
"MartinSStewart/elm-serialize": "1.3.1 <= v < 2.0.0", | ||
"elm/random": "1.0.0 <= v < 2.0.0", | ||
"elm-community/random-extra": "3.2.0 <= v < 4.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"dependencies": { | ||
"elm": "0.19.1-5", | ||
"elm-doc-preview": "^5.0.5", | ||
"elm-format": "^0.8.7", | ||
"elm-review": "^2.10.2", | ||
"elm-test": "0.19.1-revision12", | ||
"elm-verify-examples": "^5.2.0", | ||
"npm-run-all": "^4.1.5" | ||
}, | ||
"scripts": { | ||
"test": "npm-run-all --print-name --sequential test:make test:format test:e2e test:run test:review", | ||
"test:make": "elm make --docs=docs.json", | ||
"test:format": "elm-format src/ tests/*.elm review preview --validate", | ||
"test:examples": "elm-verify-examples", | ||
"test:e2e": "./e2e/test.sh", | ||
"test:run": "elm-test", | ||
"test:review": "elm-review", | ||
"fix": "npm-run-all --print-name --sequential fix:format fix:review", | ||
"fix:format": "elm-format src/ tests/*.elm review preview --yes", | ||
"fix:review": "elm-review --fix", | ||
"start": "npm-run-all -p -l start:docs", | ||
"start:docs": "elm-doc-preview", | ||
"elm-bump": "npm-run-all --print-name --sequential test bump-version 'test:review -- --fix-all-without-prompt'", | ||
"bump-version": "(yes | elm bump)" | ||
} | ||
} | ||
"dependencies": { | ||
"elm": "0.19.1-5", | ||
"elm-doc-preview": "^5.0.5", | ||
"elm-format": "^0.8.7", | ||
"elm-review": "^2.10.2", | ||
"elm-test": "0.19.1-revision12", | ||
"elm-verify-examples": "^5.2.0", | ||
"npm-run-all": "^4.1.5" | ||
}, | ||
"scripts": { | ||
"test": "npm-run-all --print-name --sequential test:make test:format test:e2e test:run test:review", | ||
"test:make": "elm make --docs=docs.json", | ||
"test:format": "elm-format src/ tests/*.elm review preview --validate", | ||
"test:examples": "elm-verify-examples", | ||
"test:e2e": "./e2e/test.sh", | ||
"test:run": "elm-test", | ||
"test:review": "elm-review", | ||
"fix": "npm-run-all --print-name --sequential fix:format fix:review", | ||
"fix:format": "elm-format src/ tests/*.elm review preview e2e/E2E.elm --yes", | ||
"fix:review": "elm-review --fix", | ||
"start": "npm-run-all -p -l start:docs", | ||
"start:docs": "elm-doc-preview", | ||
"elm-bump": "npm-run-all --print-name --sequential test bump-version 'test:review -- --fix-all-without-prompt'", | ||
"bump-version": "(yes | elm bump)" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.