Skip to content

Commit

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

* Update .gitignore
  • Loading branch information
thomashoneyman authored Mar 20, 2020
1 parent a9999bc commit 0d98c56
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
19 changes: 15 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
/.*
!/.gitignore
!/.github
!/.eslintrc.json
!/.travis.yml
/bower_components/
/node_modules/
/output/

# Dependencies
bower_components
node_modules

# Generated files
output
dce-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,14 +5,14 @@ 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
- npm install
script:
- bower install --production
script:
- npm run -s build
- bower install
- npm run -s test
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"test": "pulp test"
},
"devDependencies": {
"eslint": "^5.14.0",
"pulp": "^12.3.1",
"eslint": "^6.8.0",
"pulp": "^14.0.0",
"purescript-psa": "^0.7.3",
"rimraf": "^2.6.3"
"rimraf": "^3.0.2"
}
}

0 comments on commit 0d98c56

Please sign in to comment.