File tree 4 files changed +35
-29
lines changed
4 files changed +35
-29
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
7
- . *
Original file line number Diff line number Diff line change 1
1
language : node_js
2
- sudo : false
3
- node_js :
4
- - 5.5
5
- env :
6
- - PSC_VERSION=0.9.1
2
+ dist : trusty
3
+ sudo : required
4
+ node_js : 6
7
5
install :
8
- - npm install purescript@${PSC_VERSION} pulp bower -g
9
- - bower update
6
+ - npm install -g bower
7
+ - npm install
8
+ - bower install
10
9
script :
11
- - pulp build
12
-
10
+ - npm run -s build
13
11
after_success :
14
- - >-
15
- test $TRAVIS_TAG &&
16
- psc-publish > .pursuit.json &&
17
- curl -X POST https://pursuit.purescript.org/packages \
18
- -d @.pursuit.json \
19
- -H 'Accept: application/json' \
20
- -H "Authorization: token ${GITHUB_TOKEN}"
12
+ - >-
13
+ test $TRAVIS_TAG &&
14
+ echo $GITHUB_TOKEN | pulp login &&
15
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-form-urlencoded" ,
3
3
"license" : " BSD-3-Clause" ,
4
- "moduleType" : [
5
- " node"
6
- ],
4
+ "repository" : {
5
+ "type" : " git" ,
6
+ "url" : " git://github.com/purescript-contrib/purescript-form-urlencoded.git"
7
+ },
7
8
"ignore" : [
8
9
" **/.*" ,
9
- " node_modules" ,
10
10
" bower_components" ,
11
- " output"
11
+ " node_modules" ,
12
+ " output" ,
13
+ " bower.json" ,
14
+ " package.json"
12
15
],
13
16
"dependencies" : {
14
17
"purescript-prelude" : " ^1.0.1" ,
17
20
"purescript-maybe" : " ^1.0.0" ,
18
21
"purescript-strings" : " ^1.0.0" ,
19
22
"purescript-tuples" : " ^1.0.0"
20
- },
21
- "repository" : {
22
- "type" : " git" ,
23
- "url" : " git://github.com/purescript-contrib/purescript-form-urlencoded.git"
24
23
}
25
24
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "private" : true ,
3
+ "scripts" : {
4
+ "clean" : " rimraf output && rimraf .pulp-cache" ,
5
+ "build" : " pulp build --censor-lib --strict"
6
+ },
7
+ "devDependencies" : {
8
+ "pulp" : " ^9.0.0" ,
9
+ "purescript-psa" : " ^0.3.9" ,
10
+ "purescript" : " ^0.9.1" ,
11
+ "rimraf" : " ^2.5.0"
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments