Skip to content

Commit edb76b6

Browse files
committed
Add npm build script + test skeleton
1 parent 3ba3ef1 commit edb76b6

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"grunt": "~0.4.5",
55
"grunt-contrib-clean": "~0.5.0",
66
"grunt-purescript": "~0.5.1"
7+
},
8+
"scripts": {
9+
"postinstall": "pulp dep install",
10+
"build": "pulp build && pulp test && rimraf docs && pulp docs"
711
}
812
}

test/Main.purs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module Test.Main where
2+
3+
import Prelude
4+
import Control.Monad.Eff
5+
6+
-- TODO
7+
main :: forall e. Eff e Unit
8+
main = return unit

0 commit comments

Comments
 (0)