Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
echo '```diff' > diff.md
diff --ignore-all-space --minimal --new-file --recursive \
main/generated \
branch/generated | dd bs=1024 count=30 >> diff.md || true # We ignore diff exiting with a 1
branch/cli/generated | dd bs=1024 count=30 >> diff.md || true # We ignore diff exiting with a 1
echo -e '\n```' >> diff.md

- name: Post a comment with the diff
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/TestGenScript.elm → cli/src/TestGenScript.elm
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,5 @@ run =
, Pages.Script.exec "sh"
[ "-c", "cd example && npx --no -- elm make src/Example.elm --output=/dev/null" ]
]
|> BackendTask.inDir "cli"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

elm-page's API is great, it's very clear that Dillon poured a lot of effort into it.

)
3 changes: 2 additions & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"type": "application",
"source-directories": [
"src",
"codegen"
"codegen",
"cli/src"
],
"elm-version": "0.19.1",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"review:watch": "elm-review --watch --fix",
"format": "elm-format src tests --validate",
"test": "elm-test",
"test:gen": "elm-pages run src/TestGenScript.elm",
"test:gen": "elm-pages run cli/src/TestGenScript.elm",
"test:watch": "elm-test --watch",
"pub": "npm run build && npm publish"
},
Expand Down
8 changes: 8 additions & 0 deletions review/suppressed/NoUnused.Exports.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"version": 1,
"automatically created by": "elm-review suppress",
"learn more": "elm-review suppress --help",
"suppressions": [
{ "count": 1, "filePath": "cli/src/TestGenScript.elm" }
]
}