This commit is contained in:
notgne2 2019-12-12 13:06:04 -07:00
parent f053fd4420
commit e59f1f1364
5 changed files with 17 additions and 18 deletions

3
.gitignore vendored Normal file
View File

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

View File

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

View File

@ -1,16 +1,5 @@
{
"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"
},
"dependencies": {},
"name": "gen2-space",
"version": "1.0.0",
"main": "src/index.js",

1
result Symbolic link
View File

@ -0,0 +1 @@
/nix/store/j2i65ccpy5zgc56mjwf2hz5h0p1j6k02-gen2.space

View File

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