prepare to push to netlify

master
Brian Hicks 2020-03-13 11:56:47 -05:00
parent b1e64dd2cf
commit 32c7605b5b
5 changed files with 10019 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/elm-stuff
/index.html
/node_modules

3
netlify.toml Normal file
View File

@ -0,0 +1,3 @@
[build]
publish = "./dist/"
command = "mkdir dist && ./node_modules/.bin/elm make --debug --output dist/index.html src/Main.elm"

9990
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "elm-save-scroll-experiment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.bytes.zone:brian/elm-save-scroll-experiment.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"elm": "^0.19.1-3"
},
"devDependencies": {
"netlify-cli": "^2.38.0"
}
}

View File

@ -13,7 +13,10 @@ stdenv.mkDerivation {
git
# elm
elmPackages.elm
elmPackages.elm-format
# node
nodePackages.npm
nodejs-10_x
];
}