-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tapglue/console
Console
- Loading branch information
Showing
73 changed files
with
61,173 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ _testmain.go | |
*.exe | ||
*.test | ||
*.prof | ||
|
||
elm-stuff |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
scripts/console.js |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
help: | ||
@echo "commands:" | ||
@echo " make compile Compiles the Elm code into JS (requires elm-make)" | ||
@echo " make compile-watch Compiles continuously on file changes (requires elm-live)" | ||
@echo " make static Bundle static assets into Go binary (requires esc)" | ||
@echo " make test Run frontend tests (requires elm-test)" | ||
@echo " make test-watch Runs frontend tests continuously on file changes (requires elm-test" | ||
|
||
compile: | ||
elm-make src/Main.elm --output=scripts/console.js | ||
|
||
compile-watch: | ||
elm-live src/Main.elm --output=scripts/console.js | ||
|
||
static: | ||
esc -pkg main -ignore 'elm-*|.git*|.go$|src|tests' -o static.go . | ||
|
||
test: | ||
elm-test | ||
|
||
test-watch: | ||
elm-test --watch |
Oops, something went wrong.