Skip to content

Commit

Permalink
Update Travis file and npm dev dependencies (#23)
Browse files Browse the repository at this point in the history
* Update Travis file and npm dev dependencies

* Update .travis.yml

* Update gitignore and lockfiles
  • Loading branch information
thomashoneyman authored Mar 20, 2020
1 parent 59b6259 commit 19b33c4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2,611 deletions.
19 changes: 15 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
/.*
!/.gitignore
!/.github
!/.eslintrc.json
!/.travis.yml
/bower_components/
/node_modules/
/output/

# Dependencies
bower_components
node_modules

# Generated files
output
generated-docs

# Lockfiles
package-lock.json
*.lock

# Extra files
!/.eslintrc.json
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(basename $(curl -Ls -o /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
Expand All @@ -15,7 +15,7 @@ install:
script:
- npm run -s build
- bower install
- npm run -s test
- npm test
after_success:
- >-
test $TRAVIS_TAG &&
Expand Down
Loading

0 comments on commit 19b33c4

Please sign in to comment.