File tree 6 files changed +30
-128
lines changed
6 files changed +30
-128
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"preset" : " grunt" ,
3
+ "disallowSpacesInFunctionExpression" : null ,
4
+ "requireSpacesInFunctionExpression" : {
5
+ "beforeOpeningRoundBrace" : true ,
6
+ "beforeOpeningCurlyBrace" : true
7
+ },
3
8
"disallowSpacesInAnonymousFunctionExpression" : null ,
4
9
"requireSpacesInAnonymousFunctionExpression" : {
5
10
"beforeOpeningRoundBrace" : true ,
Original file line number Diff line number Diff line change 5
5
"freeze" : true ,
6
6
"funcscope" : true ,
7
7
"futurehostile" : true ,
8
- "globalstrict " : true ,
8
+ "strict " : " global " ,
9
9
"latedef" : true ,
10
- "maxparams" : 1 ,
11
10
"noarg" : true ,
12
11
"nocomma" : true ,
13
12
"nonew" : true ,
Original file line number Diff line number Diff line change 1
1
language : node_js
2
- sudo : false
3
- node_js :
4
- - 4
5
- - 6
2
+ dist : trusty
3
+ sudo : required
4
+ node_js : 6
6
5
env :
7
6
- PATH=$HOME/purescript:$PATH
8
7
install :
@@ -13,4 +12,12 @@ install:
13
12
- npm install -g bower
14
13
- npm install
15
14
script :
16
- - npm run build
15
+ - bower install --production
16
+ - npm run -s build
17
+ - bower install
18
+ - npm test
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 2
2
3
3
[ ![ Latest release] ( http://img.shields.io/bower/v/purescript-node-path.svg )] ( https://github.com/purescript-node/purescript-node-path/releases )
4
4
[ ![ Build Status] ( https://travis-ci.org/purescript-node/purescript-node-path.svg?branch=master )] ( https://travis-ci.org/purescript-node/purescript-node-path )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/5759d0757757a0004a1de996/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/5759d0757757a0004a1de996 )
5
6
[ ![ Maintainer: garyb] ( https://img.shields.io/badge/maintainer-garyb-lightgrey.svg )] ( http://github.com/garyb )
6
7
7
8
Type type definitions for Node's path module.
@@ -12,6 +13,6 @@ Type type definitions for Node's path module.
12
13
bower install purescript-node-path
13
14
```
14
15
15
- ## Module documentation
16
+ ## Documentation
16
17
17
- - [ Node.Path ] ( docs/Node/Path.md )
18
+ Module documentation is [ published on Pursuit ] ( http://pursuit.purescript.org/packages/purescript-node-path ) .
Load Diff This file was deleted.
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" : " jshint src && jscs src && pulp build --censor-lib --strict" ,
6
+ "test" : " pulp test"
7
+ },
3
8
"devDependencies" : {
9
+ "jscs" : " ^2.8.0" ,
10
+ "jshint" : " ^2.9.1" ,
4
11
"pulp" : " ^9.0.0" ,
5
- "jscs" : " ^1.13.1" ,
6
- "jshint" : " ^2.8.0" ,
7
- "rimraf" : " ^2.3.3"
8
- },
9
- "scripts" : {
10
- "build" : " jshint src && jscs src && pulp build && rimraf docs && pulp docs" ,
11
- "postinstall" : " bower install"
12
+ "purescript-psa" : " ^0.3.8" ,
13
+ "rimraf" : " ^2.5.0"
12
14
}
13
15
}
You can’t perform that action at this time.
0 commit comments