This commit is contained in:
Anthony Cicchetti 2023-01-07 23:57:19 -05:00
parent 22479703e1
commit 51f6693237
8 changed files with 10482 additions and 26 deletions

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
* text=auto

2
.gitignore vendored
View file

@ -6,3 +6,5 @@ repl-temp-*
leaderboard.js leaderboard.js
leaderboard.min.js leaderboard.min.js
leaderboard.opt.js leaderboard.opt.js
node_modules/

View file

@ -3,17 +3,17 @@
"source-directories": [ "source-directories": [
"src" "src"
], ],
"elm-version": "0.19.0", "elm-version": "0.19.1",
"dependencies": { "dependencies": {
"direct": { "direct": {
"NoRedInk/elm-json-decode-pipeline": "1.0.0", "NoRedInk/elm-json-decode-pipeline": "1.0.1",
"elm/browser": "1.0.1", "elm/browser": "1.0.2",
"elm/core": "1.0.2", "elm/core": "1.0.5",
"elm/html": "1.0.0", "elm/html": "1.0.0",
"elm/http": "2.0.0", "elm/http": "2.0.0",
"elm/json": "1.1.3", "elm/json": "1.1.3",
"elm/time": "1.0.0", "elm/time": "1.0.0",
"justinmimbs/date": "3.2.0", "justinmimbs/date": "4.0.1",
"rundis/elm-bootstrap": "5.2.0" "rundis/elm-bootstrap": "5.2.0"
}, },
"indirect": { "indirect": {
@ -23,7 +23,7 @@
"elm/parser": "1.1.0", "elm/parser": "1.1.0",
"elm/regex": "1.0.0", "elm/regex": "1.0.0",
"elm/url": "1.0.0", "elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2" "elm/virtual-dom": "1.0.3"
} }
}, },
"test-dependencies": { "test-dependencies": {

9235
index.html

File diff suppressed because it is too large Load diff

View file

@ -5,8 +5,7 @@ build:
elm make src/Leaderboard.elm --output=leaderboard.js elm make src/Leaderboard.elm --output=leaderboard.js
install: install:
yarn global add elm-format elm-test elm-oracle elm-live pnpm global add elm-format elm-test elm-oracle elm-live
nodenv rehash
debug: debug:
elm-live src/Leaderboard.elm --open -- --debug --output=leaderboard.js elm-live src/Leaderboard.elm --open -- --debug --output=leaderboard.js

10
package.json Normal file
View 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

File diff suppressed because it is too large Load diff

View file

@ -10,7 +10,7 @@ import Browser
import Date import Date
import Debug exposing (toString) import Debug exposing (toString)
import Html exposing (..) import Html exposing (..)
import Html.Attributes exposing (..) import Html.Attributes exposing (class)
import Html.Events exposing (onClick, onInput) import Html.Events exposing (onClick, onInput)
import Http import Http
import Json.Decode as Decode exposing (Decoder) import Json.Decode as Decode exposing (Decoder)