Skip to content

Commit 7d62578

Browse files
simonyangmepaf31
authored andcommitted
Update for PureScript 0.11 (#19)
* Updates for purescript 0.11 * Bumping pulp version
1 parent b47cf74 commit 7d62578

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

bower.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"!LICENSE"
1717
],
1818
"dependencies": {
19-
"purescript-foreign": "^3.0.0",
20-
"purescript-maps": "^2.0.0",
21-
"purescript-tuples": "^3.0.0",
22-
"purescript-monoid": "^2.0.0",
23-
"purescript-maybe": "^2.0.0",
24-
"purescript-contravariant": "^2.0.0"
19+
"purescript-foreign": "^4.0.0",
20+
"purescript-maps": "^3.0.0",
21+
"purescript-tuples": "^4.0.0",
22+
"purescript-monoid": "^3.0.0",
23+
"purescript-maybe": "^3.0.0",
24+
"purescript-contravariant": "^3.0.0"
2525
},
2626
"devDependencies": {
27-
"purescript-console": "^2.0.0"
27+
"purescript-console": "^3.0.0"
2828
}
2929
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "pulp build --censor-lib --strict",
5+
"build": "pulp build -- --censor-lib --strict",
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"pulp": "^9.0.1",
10-
"purescript-psa": "^0.3.9",
11-
"purescript": "^0.10.1",
9+
"pulp": "^11.0.0",
10+
"purescript-psa": "^0.5.0",
11+
"purescript": "^0.11.1",
1212
"rimraf": "^2.5.4"
1313
}
1414
}

test/Test/Main.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ instance shapeShow :: Show Shape where
1717
show Square = "square"
1818
show Triangle = "triangle"
1919

20-
foreign import data Foo :: *
20+
foreign import data Foo :: Type
2121

2222
foo :: Option Foo String
2323
foo = opt "foo"

0 commit comments

Comments
 (0)