Updates?
This commit is contained in:
parent
22479703e1
commit
51f6693237
8 changed files with 10482 additions and 26 deletions
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
* text=auto
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -5,4 +5,6 @@ repl-temp-*
|
|||
|
||||
leaderboard.js
|
||||
leaderboard.min.js
|
||||
leaderboard.opt.js
|
||||
leaderboard.opt.js
|
||||
|
||||
node_modules/
|
||||
|
|
12
elm.json
12
elm.json
|
@ -3,17 +3,17 @@
|
|||
"source-directories": [
|
||||
"src"
|
||||
],
|
||||
"elm-version": "0.19.0",
|
||||
"elm-version": "0.19.1",
|
||||
"dependencies": {
|
||||
"direct": {
|
||||
"NoRedInk/elm-json-decode-pipeline": "1.0.0",
|
||||
"elm/browser": "1.0.1",
|
||||
"elm/core": "1.0.2",
|
||||
"NoRedInk/elm-json-decode-pipeline": "1.0.1",
|
||||
"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",
|
||||
"justinmimbs/date": "3.2.0",
|
||||
"justinmimbs/date": "4.0.1",
|
||||
"rundis/elm-bootstrap": "5.2.0"
|
||||
},
|
||||
"indirect": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"elm/parser": "1.1.0",
|
||||
"elm/regex": "1.0.0",
|
||||
"elm/url": "1.0.0",
|
||||
"elm/virtual-dom": "1.0.2"
|
||||
"elm/virtual-dom": "1.0.3"
|
||||
}
|
||||
},
|
||||
"test-dependencies": {
|
||||
|
|
9249
index.html
9249
index.html
File diff suppressed because it is too large
Load diff
3
justfile
3
justfile
|
@ -5,8 +5,7 @@ build:
|
|||
elm make src/Leaderboard.elm --output=leaderboard.js
|
||||
|
||||
install:
|
||||
yarn global add elm-format elm-test elm-oracle elm-live
|
||||
nodenv rehash
|
||||
pnpm global add elm-format elm-test elm-oracle elm-live
|
||||
|
||||
debug:
|
||||
elm-live src/Leaderboard.elm --open -- --debug --output=leaderboard.js
|
||||
|
|
10
package.json
Normal file
10
package.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"elm": "0.19.1-5",
|
||||
"elm-format": "^0.8.5",
|
||||
"elm-live": "^4.0.2",
|
||||
"elm-oracle": "^1.1.1",
|
||||
"elm-test": "0.19.1-revision11",
|
||||
"uglify-js": "^3.17.4"
|
||||
}
|
||||
}
|
1227
pnpm-lock.yaml
generated
Normal file
1227
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ import Browser
|
|||
import Date
|
||||
import Debug exposing (toString)
|
||||
import Html exposing (..)
|
||||
import Html.Attributes exposing (..)
|
||||
import Html.Attributes exposing (class)
|
||||
import Html.Events exposing (onClick, onInput)
|
||||
import Http
|
||||
import Json.Decode as Decode exposing (Decoder)
|
||||
|
|
Loading…
Add table
Reference in a new issue