This repository was archived by the owner on Aug 4, 2023. It is now read-only.
File tree 6 files changed +34
-316
lines changed
6 files changed +34
-316
lines changed Original file line number Diff line number Diff line change 1
- .psci_modules
2
- * .sw [mnopqrstuv ]
3
- * .un~
4
- .psci
5
- node_modules
6
- bower_components
7
- output
8
- dist
1
+ /. *
2
+ ! /.gitignore
3
+ ! /.travis.yml
4
+ /bower_components /
5
+ /node_modules /
6
+ /tmp /
7
+ /output /
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
dist : trusty
3
3
sudo : required
4
- node_js :
5
- - 4.1
4
+ node_js : 6
6
5
env :
7
6
- PATH=$HOME/purescript:$PATH
8
7
install :
9
8
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
10
9
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
11
10
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
12
11
- chmod a+x $HOME/purescript
12
+ - npm install -g bower
13
13
- npm install
14
14
script :
15
- - npm run build
16
- - npm run example
15
+ - bower install --production
16
+ - npm run -s build
17
+ - bower install
18
+ - npm run -s example
19
+ after_success :
20
+ - >-
21
+ test $TRAVIS_TAG &&
22
+ echo $GITHUB_TOKEN | pulp login &&
23
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 1
- ## Node.FS.Aff
1
+ # purescript-node-fs-aff
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/purescript-node/purescript-node-fs-aff.svg )] ( https://travis-ci.org/purescript-node/purescript-node-fs-aff )
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-node-fs-aff.svg )] ( https://github.com/purescript-node/purescript-node-fs-aff/releases )
4
+ [ ![ Build Status] ( https://travis-ci.org/purescript-node/purescript-node-fs-aff.svg?branch=master )] ( https://travis-ci.org/purescript-node/purescript-node-fs-aff )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/579dffa9aa78d500469f9d71/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/579dffa9aa78d500469f9d71 )
4
6
5
- > [ Node.FS] [ Node.FS ] Wrappers for [ purescript-aff] [ aff ]
7
+ [ Node.FS] [ Node.FS ] Wrappers for [ purescript-aff] [ aff ]
6
8
7
9
The ` Aff ` monad lets you write async code with ease, and ` node-fs-aff `
8
10
lets you easily access the filesystem within ` Aff ` .
9
11
10
- #### Example
12
+ ## Example
11
13
12
14
Consider asynchronously listing only non-hidden directories:
13
15
@@ -24,11 +26,10 @@ main = launchAff do
24
26
25
27
That was easy. Run ` npm run example ` to see it work.
26
28
27
- #### Documentation
29
+ ## Documentation
28
30
29
- [ Read the module docs ] [ docs ]
31
+ Module documentation is [ published on Pursuit ] ( http://pursuit.purescript.org/packages/purescript-node-fs-aff ) .
30
32
31
33
32
34
[ Node.FS ] : http://github.com/purescript-node/purescript-node-fs
33
35
[ aff ] : https://github.com/slamdata/purescript-aff
34
- [ docs ] : http://github.com/purescript-node/purescript-node-fs-aff/blob/master/docs/Node/FS/Aff.md
Original file line number Diff line number Diff line change 13
13
" node"
14
14
],
15
15
"license" : " MIT" ,
16
- "homepage" : " https://github.com/felixSchl /purescript-node-fs-aff" ,
16
+ "homepage" : " https://github.com/purescript-node /purescript-node-fs-aff" ,
17
17
"ignore" : [
18
18
" **/.*" ,
19
19
" node_modules" ,
23
23
" output" ,
24
24
" tmp" ,
25
25
" bower.json" ,
26
- " gulpfile.js" ,
27
26
" package.json" ,
28
27
" example"
29
28
],
30
29
"dependencies" : {
31
- "purescript-aff" : " ^1.0 .0" ,
32
- "purescript-node-fs" : " ^1 .0.0" ,
30
+ "purescript-aff" : " ^1.1 .0" ,
31
+ "purescript-node-fs" : " ^2 .0.0" ,
33
32
"purescript-either" : " ^1.0.0" ,
34
33
"purescript-node-path" : " ^1.0.0"
35
34
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments