-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show event timestamps with local TZ from web web browser
https://package.elm-lang.org/packages/justinmimbs/timezone-data/latest/ https://github.com/elm/time References: #1723
- Loading branch information
1 parent
726771f
commit 9176c24
Showing
4 changed files
with
72 additions
and
53 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 |
---|---|---|
@@ -1,38 +1,41 @@ | ||
{ | ||
"type": "application", | ||
"source-directories": ["./src"], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"NoRedInk/elm-json-decode-pipeline": "1.0.1", | ||
"damienklinnert/elm-spinner": "3.0.2", | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.5", | ||
"elm/html": "1.0.0", | ||
"elm/http": "2.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/time": "1.0.0", | ||
"elm/url": "1.0.0", | ||
"elm-community/maybe-extra": "5.3.0", | ||
"klazuka/elm-json-tree-view": "2.1.0", | ||
"rtfeldman/elm-iso8601-date-strings": "1.1.4", | ||
"ryannhg/date-format": "2.3.0" | ||
"type": "application", | ||
"source-directories": [ | ||
"./src" | ||
], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"NoRedInk/elm-json-decode-pipeline": "1.0.1", | ||
"damienklinnert/elm-spinner": "3.0.2", | ||
"elm/browser": "1.0.2", | ||
"elm/core": "1.0.5", | ||
"elm/html": "1.0.0", | ||
"elm/http": "2.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/time": "1.0.0", | ||
"elm/url": "1.0.0", | ||
"elm-community/maybe-extra": "5.3.0", | ||
"justinmimbs/timezone-data": "10.1.0", | ||
"klazuka/elm-json-tree-view": "2.1.0", | ||
"rtfeldman/elm-iso8601-date-strings": "1.1.4", | ||
"ryannhg/date-format": "2.3.0" | ||
}, | ||
"indirect": { | ||
"avh4/elm-color": "1.0.0", | ||
"elm/bytes": "1.0.8", | ||
"elm/file": "1.0.5", | ||
"elm/parser": "1.1.0", | ||
"elm/virtual-dom": "1.0.2" | ||
} | ||
}, | ||
"indirect": { | ||
"avh4/elm-color": "1.0.0", | ||
"elm/bytes": "1.0.8", | ||
"elm/file": "1.0.5", | ||
"elm/parser": "1.1.0", | ||
"elm/virtual-dom": "1.0.2", | ||
"robinheghan/murmur3": "1.0.0" | ||
"test-dependencies": { | ||
"direct": { | ||
"elm-explorations/test": "2.1.2" | ||
}, | ||
"indirect": { | ||
"elm/random": "1.0.0", | ||
"robinheghan/murmur3": "1.0.0" | ||
} | ||
} | ||
}, | ||
"test-dependencies": { | ||
"direct": { | ||
"elm-explorations/test": "2.1.2" | ||
}, | ||
"indirect": { | ||
"elm/random": "1.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
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