Skip to content

Commit 0d98c56

Browse files
Update Travis file and npm dev dependencies (#39)
* Update Travis file and npm dev dependencies * Update .gitignore
1 parent a9999bc commit 0d98c56

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

.gitignore

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
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+
dce-output
13+
generated-docs
14+
15+
# Lockfiles
916
package-lock.json
17+
*.lock
18+
19+
# Extra files
20+
!/.eslintrc.json

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ node_js: stable
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
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
1313
- npm install
14-
script:
1514
- bower install --production
15+
script:
1616
- npm run -s build
1717
- bower install
1818
- npm run -s test

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"eslint": "^5.14.0",
10-
"pulp": "^12.3.1",
9+
"eslint": "^6.8.0",
10+
"pulp": "^14.0.0",
1111
"purescript-psa": "^0.7.3",
12-
"rimraf": "^2.6.3"
12+
"rimraf": "^3.0.2"
1313
}
1414
}

0 commit comments

Comments
 (0)