Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit fdeceab

Browse files
committed
initial commit
1 parent 700ccf6 commit fdeceab

File tree

6 files changed

+523
-0
lines changed

6 files changed

+523
-0
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
dist: trusty
3+
sudo: required
4+
node_js:
5+
- 6
6+
install:
7+
- npm install pulp bower -g
8+
- npm install && bower install
9+
script:
10+
- npm run test

bower.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "purescript-sqlsquare",
3+
"ignore": [
4+
"**/.*",
5+
"node_modules",
6+
"bower_components",
7+
"output"
8+
],
9+
"dependencies": {
10+
"purescript-prelude": "^2.4.0",
11+
"purescript-matryoshka": "^0.1.1",
12+
"purescript-pathy": "^3.0.2",
13+
"purescript-debug": "^2.0.0"
14+
}
15+
}

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "purescript-sqlsquare",
3+
"license": "Apache-2.0",
4+
"dependencies": {
5+
"pulp": "^10.0.1",
6+
"purescript": "^0.10.7",
7+
"purescript-psa": "^0.4.0"
8+
}
9+
}

src/Main.purs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module Main where
2+
3+
import Prelude
4+
import Control.Monad.Eff (Eff)
5+
import Control.Monad.Eff.Console (CONSOLE, log)
6+
7+
main :: forall e. Eff (console :: CONSOLE | e) Unit
8+
main = do
9+
log "Hello sailor!"

0 commit comments

Comments
 (0)