File tree Expand file tree Collapse file tree 4 files changed +19
-2611
lines changed Expand file tree Collapse file tree 4 files changed +19
-2611
lines changed Original file line number Diff line number Diff line change 11/. *
22! /.gitignore
33! /.github
4- ! /.eslintrc.json
54! /.travis.yml
6- /bower_components /
7- /node_modules /
8- /output /
5+
6+ # Dependencies
7+ bower_components
8+ node_modules
9+
10+ # Generated files
11+ output
12+ generated-docs
13+
14+ # Lockfiles
15+ package-lock.json
16+ * .lock
17+
18+ # Extra files
19+ ! /.eslintrc.json
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ node_js: stable
55env :
66 - PATH=$HOME/purescript:$PATH
77install :
8- - TAG=$(basename $(curl -Ls -o /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9- - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
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
1010 - tar -xvf $HOME/purescript.tar.gz -C $HOME/
1111 - chmod a+x $HOME/purescript
1212 - npm install -g bower
@@ -15,7 +15,7 @@ install:
1515script :
1616 - npm run -s build
1717 - bower install
18- - npm run -s test
18+ - npm test
1919after_success :
2020 - >-
2121 test $TRAVIS_TAG &&
You can’t perform that action at this time.
0 commit comments