File tree Expand file tree Collapse file tree 5 files changed +48
-10
lines changed Expand file tree Collapse file tree 5 files changed +48
-10
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
- bower_components /
4
- node_modules /
5
- output /
6
- tmp /
7
- npm-debug.log
3
+ ! /.travis.yml
4
+ /bower_components /
5
+ /node_modules /
6
+ /output /
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ dist : trusty
3
+ sudo : required
4
+ node_js : 6
5
+ env :
6
+ - PATH=$HOME/purescript:$PATH
7
+ install :
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')
9
+ - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10
+ - tar -xvf $HOME/purescript.tar.gz -C $HOME/
11
+ - chmod a+x $HOME/purescript
12
+ - npm install -g bower
13
+ - npm install
14
+ - bower install
15
+ script :
16
+ - npm run -s build
17
+ after_success :
18
+ - >-
19
+ test $TRAVIS_TAG &&
20
+ echo $GITHUB_TOKEN | pulp login &&
21
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 1
1
# purescript-node-child-process
2
2
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-node-child-process.svg )] ( https://github.com/purescript/purescript-node-child-process/releases )
4
+ [ ![ Build Status] ( https://travis-ci.org/purescript/purescript-node-child-process.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-node-child-process )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/579e4755aa78d50051183eec/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/579e4755aa78d50051183eec )
6
+
3
7
Bindings to Node's ` child_process ` API.
4
8
5
- Documentation is [ on Pursuit] ( http://pursuit.purescript.org/packages/purescript-node-child-process ) .
9
+ ## Installation
10
+
11
+ ```
12
+ bower install purescript-node-child-process
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ Module documentation is [ published on Pursuit] ( http://pursuit.purescript.org/packages/purescript-node-child-process ) .
Original file line number Diff line number Diff line change 10
10
"purescript-exceptions" : " ^1.0.0" ,
11
11
"purescript-foreign" : " ^1.0.0" ,
12
12
"purescript-functions" : " ^1.0.0" ,
13
- "purescript-maps" : " ^1.0 .0" ,
14
- "purescript-node-fs" : " ^1 .0.0" ,
13
+ "purescript-maps" : " ^1.1 .0" ,
14
+ "purescript-node-fs" : " ^2 .0.0" ,
15
15
"purescript-node-streams" : " ^1.0.0" ,
16
- "purescript-nullable" : " ^1.0.0 " ,
16
+ "purescript-nullable" : " ^1.0.1 " ,
17
17
"purescript-posix-types" : " ^1.0.0" ,
18
18
"purescript-unsafe-coerce" : " ^1.0.0"
19
19
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
+ "scripts" : {
4
+ "clean" : " rimraf output && rimraf .pulp-cache" ,
5
+ "build" : " pulp build --censor-lib --strict"
6
+ },
3
7
"devDependencies" : {
4
- "pulp" : " ^6.0.0"
8
+ "pulp" : " ^9.0.1" ,
9
+ "purescript-psa" : " ^0.3.9" ,
10
+ "rimraf" : " ^2.5.4"
5
11
}
6
12
}
You can’t perform that action at this time.
0 commit comments