File tree 12 files changed +57
-586
lines changed
12 files changed +57
-586
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
+ ! /.jscsrc
4
+ ! /.jshintrc
3
5
! /.travis.yml
4
6
/bower_components /
5
7
/node_modules /
6
8
/output /
7
- /tmp /
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
- - 0.10
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
15
+ - bower install --production
16
+ - npm run -s build
17
+ - bower install
18
+ - npm -s 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 1
- purescript-parsing
2
- ==================
1
+ # purescript-parsing
3
2
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-parsing.svg )] ( https://github.com/purescript/purescript-parsing/releases )
4
4
[ ![ Build Status] ( https://travis-ci.org/purescript-contrib/purescript-parsing.svg?branch=master )] ( https://travis-ci.org/purescript-contrib/purescript-parsing )
5
+ [ ![ Dependency Status] ( https://www.versioneye.com/user/projects/575abc417757a0003bd4bfae/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/575abc417757a0003bd4bfae )
5
6
[ ![ Maintainer: paf31] ( https://img.shields.io/badge/maintainer-paf31-lightgrey.svg )] ( http://github.com/paf31 )
6
7
7
- A parser combinator library based on Parsec.
8
+ A parser combinator library based on Haskell's Parsec.
8
9
9
- - [ Module documentation] ( docs/Text/Parsing/ )
10
- - [ Example usage] ( test/Main.purs )
10
+ ## Installation
11
11
12
- ### Installing
12
+ ```
13
+ bower install purescript-parsing
14
+ ```
13
15
14
- bower i purescript-parsing
16
+ ## Documentation
15
17
16
- ### Building / Testing
17
-
18
- bower update
19
- pulp build
20
- pulp test
18
+ - [ See the tests] ( test/Main.purs ) for some example usages.
19
+ - Module documentation is [ published on Pursuit] ( http://pursuit.purescript.org/packages/purescript-parsing ) .
Original file line number Diff line number Diff line change 6
6
" purescript"
7
7
],
8
8
"license" : " MIT" ,
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git://github.com/purescript-contrib/purescript-parsing.git"
12
+ },
9
13
"ignore" : [
10
14
" **/.*" ,
11
15
" bower_components" ,
12
16
" node_modules" ,
13
17
" output" ,
14
- " tests" ,
15
- " tmp" ,
18
+ " test" ,
16
19
" bower.json" ,
17
- " Gruntfile.js" ,
18
20
" package.json"
19
21
],
20
- "repository" : {
21
- "type" : " git" ,
22
- "url" : " git://github.com/purescript-contrib/purescript-parsing.git"
23
- },
24
22
"dependencies" : {
25
23
"purescript-arrays" : " ^1.0.0" ,
26
24
"purescript-either" : " ^1.0.0" ,
27
25
"purescript-foldable-traversable" : " ^1.0.0" ,
28
26
"purescript-identity" : " ^1.0.0" ,
27
+ "purescript-integers" : " ^1.0.0" ,
29
28
"purescript-lists" : " ^1.0.0" ,
30
29
"purescript-maybe" : " ^1.0.0" ,
31
30
"purescript-strings" : " ^1.0.0" ,
32
31
"purescript-transformers" : " ^1.0.0" ,
33
- "purescript-unicode" : " ^1.0.0" ,
34
- "purescript-integers" : " ^1.0.0"
32
+ "purescript-unicode" : " ^1.0.0"
35
33
},
36
34
"devDependencies" : {
37
- "purescript-console " : " ^1.0.0" ,
38
- "purescript-assert " : " ^1.0.0"
35
+ "purescript-assert " : " ^1.0.0" ,
36
+ "purescript-console " : " ^1.0.0"
39
37
}
40
38
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments