File tree 8 files changed +45
-284
lines changed
8 files changed +45
-284
lines changed Original file line number Diff line number Diff line change
1
+ /. *
2
+ ! /.gitignore
3
+ ! /.travis.yml
1
4
/bower_components /
2
5
/node_modules /
3
- /.pulp-cache /
4
6
/output /
5
- /.psci *
6
- /src /.webpack.js
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-process
2
2
3
- Access the Node.js global ` process ` object in PurScript.
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-node-process.svg )] ( https://github.com/purescript/purescript-node-process/releases )
4
+ [ ![ Build Status] ( https://travis-ci.org/purescript/purescript-node-process.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-node-process )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/579e4539aa78d500469f9e72/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/579e4539aa78d500469f9e72 )
4
6
5
- - [ Module Documentation] ( docs/ )
7
+ The Node.js global ` process ` object in PureScript.
8
+
9
+ ## Installation
10
+
11
+ ```
12
+ bower install purescript-node-process
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ Module documentation is [ published on Pursuit] ( http://pursuit.purescript.org/packages/purescript-node-process ) .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-node-process" ,
3
- "moduleType" : [
4
- " node"
5
- ],
6
3
"repository" : {
7
4
"type" : " git" ,
8
5
"url" : " git://github.com/purescript-node/purescript-node-process"
17
14
"dependencies" : {
18
15
"purescript-console" : " ^1.0.0" ,
19
16
"purescript-exceptions" : " ^1.0.0" ,
20
- "purescript-maps" : " ^1.0 .0" ,
17
+ "purescript-maps" : " ^1.1 .0" ,
21
18
"purescript-maybe" : " ^1.0.0" ,
22
- "purescript-node-fs" : " ^1 .0.0" ,
19
+ "purescript-node-fs" : " ^2 .0.0" ,
23
20
"purescript-node-streams" : " ^1.0.0" ,
24
21
"purescript-posix-types" : " ^1.0.0" ,
25
22
"purescript-unsafe-coerce" : " ^1.0.0" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
3
"scripts" : {
4
- "postinstall " : " pulp dep install " ,
5
- "build" : " jshint src && pulp build && rimraf docs && pulp docs "
4
+ "clean " : " rimraf output && rimraf .pulp-cache " ,
5
+ "build" : " pulp build --censor-lib --strict "
6
6
},
7
7
"devDependencies" : {
8
- "jshint " : " ^2.8.0 " ,
9
- "pulp " : " ^5.0.2 " ,
10
- "rimraf" : " ^2.4.4 "
8
+ "pulp " : " ^9.0.1 " ,
9
+ "purescript-psa " : " ^0.3.9 " ,
10
+ "rimraf" : " ^2.5.0 "
11
11
}
12
12
}
You can’t perform that action at this time.
0 commit comments