Compare commits

..

No commits in common. "e7ea034022e263a946d02b184b3892a193c0970b" and "f053fd4420d978c75f70d1ebe961dab55813a6c0" have entirely different histories.

5 changed files with 18 additions and 17 deletions

View File

@ -1 +0,0 @@
result/

3
.gitignore vendored
View File

@ -1,3 +0,0 @@
node_modules/
elm-stuff/
result/

View File

@ -1,13 +1,9 @@
{
callPackage,
wandardFrontUtils ? callPackage (builtins.fetchGit {
url = https://git.wizbos.club/wizbos-pub/wand-front-utils.git;
rev = "c05fd94028d6023b3d4debf0c1d2bece2c547df5";
}) {},
...
}:
{ callPackage, ... }:
with wandardFrontUtils;
with (callPackage (builtins.fetchGit {
url = https://git.wizbos.club/wizbos-pub/wand-front-utils.git;
rev = "c05fd94028d6023b3d4debf0c1d2bece2c547df5";
}) {});
mkWandardFront {
src = ./.;
name = "gen2.space";

View File

@ -1,5 +1,16 @@
{
"dependencies": {},
"dependencies": {
"@prerenderer/renderer-jsdom": "^0.2.0",
"copy-webpack-plugin": "^5.1.0",
"elm-webpack-loader": "^6.0.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^15.2.1",
"prerender-spa-plugin": "^3.4.0",
"tempy": "^0.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"workbox-webpack-plugin": "^4.3.1"
},
"name": "gen2-space",
"version": "1.0.0",
"main": "src/index.js",

View File

@ -1,5 +1,3 @@
document.body.innerHTML = ''
const { Elm } = require('./Main.elm');
Elm.Main.init({});