This repository has been archived by the owner on May 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from jonsterling/ready/6
Update dependencies to latest versions; add Travis integration
- Loading branch information
Showing
72 changed files
with
247 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/.* | ||
!/.gitignore | ||
/output/ | ||
/node_modules/ | ||
/bower_components/ | ||
/tmp/ | ||
/node_modules/ | ||
/node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- 0.12.7 | ||
install: | ||
- npm install -g gulp bower | ||
- npm install | ||
- bower install | ||
script: | ||
- npm run build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Module Base | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"name": "purescript-base", | ||
"license": "MIT", | ||
"authors": [ | ||
"John A. De Goes <[email protected]> (http://degoes.net)" | ||
"John A. De Goes <[email protected]> (http://degoes.net)", | ||
"Jon Sterling <[email protected]> (http://jonmsterling.com)" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
|
@@ -16,19 +17,19 @@ | |
"package.json" | ||
], | ||
"dependencies": { | ||
"purescript-arrays": "^0.4.0", | ||
"purescript-arrays": "^0.4.2", | ||
"purescript-control": "^0.3.0", | ||
"purescript-either": "^0.2.0", | ||
"purescript-enums": "^0.5.0", | ||
"purescript-either": "^0.2.2", | ||
"purescript-enums": "^0.7.0", | ||
"purescript-foldable-traversable": "^0.4.0", | ||
"purescript-lists": "^0.7.0", | ||
"purescript-lists": "^0.7.4", | ||
"purescript-math": "^0.2.0", | ||
"purescript-maybe": "^0.3.0", | ||
"purescript-maybe": "^0.3.4", | ||
"purescript-monoid": "^0.3.0", | ||
"purescript-strings": "^0.5.0", | ||
"purescript-strings": "^0.7.0", | ||
"purescript-tuples": "^0.4.0", | ||
"purescript-console": "^0.1.0", | ||
"purescript-console": "^0.1.1", | ||
"purescript-unfoldable": "^0.4.0", | ||
"purescript-integers": "^0.2.0" | ||
"purescript-integers": "^0.2.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Module Base | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
docs/Control/Monad/Eff/Console.purs → docs/Control/Monad/Eff/Console.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
## Module Control.Monad.Eff.Console | ||
|
||
Console-related functions and effect type. | ||
|
||
#### `CONSOLE` | ||
|
||
``` purescript | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Module Control.Monad.Eff.Console.Unsafe | ||
|
||
Unsafe functions to display arbitrary values. | ||
|
||
#### `logAny` | ||
|
||
``` purescript | ||
logAny :: forall a eff. a -> Eff (console :: CONSOLE | eff) Unit | ||
``` | ||
|
||
Write an arbitrary value to the console. | ||
|
||
#### `errorAny` | ||
|
||
``` purescript | ||
errorAny :: forall a eff. a -> Eff (console :: CONSOLE | eff) Unit | ||
``` | ||
|
||
Write an error with an arbitrary value to the console. | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.