Merge branch 'master' into lukas/add-buttons-to-sort-table

This commit is contained in:
Lukas Turcani 2021-12-20 19:48:23 +01:00
commit db85c22a79
4 changed files with 53 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ elm-stuff
repl-temp-*
# elm-live && build generated file
explorer/main.js
node_modules

10
elm-tooling.json Normal file
View File

@ -0,0 +1,10 @@
{
"entrypoints": [
"./src/Main.elm"
],
"tools": {
"elm": "0.19.1",
"elm-format": "0.8.5",
"elm-test-rs": "1.2.2"
}
}

31
package-lock.json generated Normal file
View File

@ -0,0 +1,31 @@
{
"name": "elm-ui-widget",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "elm-ui-widget",
"hasInstallScript": true,
"devDependencies": {
"elm-tooling": "^1.6.0"
}
},
"node_modules/elm-tooling": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.7.0.tgz",
"integrity": "sha512-EHZ54voWrG3BhUONbH/wFw5U95H6N7R4QFgXHDrPIaDBDdeyNkpFu4QWArSWkhzxyCF7hqT8ya2yy7SferDsgg==",
"dev": true,
"bin": {
"elm-tooling": "index.js"
}
}
},
"dependencies": {
"elm-tooling": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.7.0.tgz",
"integrity": "sha512-EHZ54voWrG3BhUONbH/wFw5U95H6N7R4QFgXHDrPIaDBDdeyNkpFu4QWArSWkhzxyCF7hqT8ya2yy7SferDsgg==",
"dev": true
}
}
}

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"private": true,
"name": "elm-ui-widget",
"scripts": {
"postinstall": "elm-tooling install"
},
"devDependencies": {
"elm-tooling": "^1.6.0"
},
"postinstall": "elm-tooling install"
}