File tree Expand file tree Collapse file tree 3 files changed +27
-13
lines changed Expand file tree Collapse file tree 3 files changed +27
-13
lines changed Original file line number Diff line number Diff line change 22! /.gitignore
33! /.github
44! /.travis.yml
5- /bower_components /
6- /node_modules /
7- /output /
5+
6+ # Dependencies
7+ bower_components
8+ node_modules
9+
10+ # Generated files
11+ output
12+ dce-output
13+ generated-docs
14+
15+ # Lockfiles
816package-lock.json
17+ * .lock
Original file line number Diff line number Diff line change @@ -2,16 +2,22 @@ language: node_js
22dist : trusty
33sudo : required
44node_js : stable
5+ env :
6+ - PATH=$HOME/purescript:$PATH
57install :
8+ - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9+ - curl --location --output $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
612 - npm install -g bower
713 - npm install
8- script :
914 - bower install --production
15+ script :
1016 - npm run -s build
1117 - bower install
12- - npm -s test
18+ - npm run -s test
1319after_success :
14- - >-
15- test $TRAVIS_TAG &&
16- echo $GITHUB_TOKEN | pulp login &&
17- echo y | pulp publish --no-push
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 66 "test" : " pulp test"
77 },
88 "devDependencies" : {
9- "pulp" : " ^12.2.0" ,
10- "purescript" : " ^0.12.0" ,
11- "purescript-psa" : " ^0.6.0" ,
12- "rimraf" : " ^2.6.2"
9+ "pulp" : " ^14.0.0" ,
10+ "purescript-psa" : " ^0.7.3" ,
11+ "rimraf" : " ^3.0.2"
1312 }
1413}
You can’t perform that action at this time.
0 commit comments