Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"private": true,
"devDependencies": {
"concurrently": "^6.0.2",
"parcel": "1.12.3",
"purescript": "^0.14.0",
"spago": "^0.19.1"
Expand All @@ -9,6 +10,8 @@
"build": "spago build",
"test": "spago test",
"serve": "parcel dev/index.html --open",
"start": "concurrently \"npm run serve\" \"npm run watch-build\"",
"watch-build": "spago build --watch",
"build-prod": "mkdir -p prod && cp dev/index.html prod/ && rm -rf dist && spago bundle-app --to prod/index.js && parcel build prod/index.html"
}
}
2 changes: 1 addition & 1 deletion spago.dhall
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ name = "halogen-project"
, dependencies = [ "console", "effect", "halogen", "psci-support" ]
, dependencies = [ "console", "effect", "halogen", "prelude", "psci-support" ]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}