File tree 5 files changed +20
-15
lines changed
5 files changed +20
-15
lines changed Original file line number Diff line number Diff line change 1
- # Dependencies
2
- .psci_modules
3
- bower_components
4
- node_modules
5
-
6
- # Generated files
7
- .psci
8
- output
1
+ / . *
2
+ ! / .gitignore
3
+ ! / .eslintrc.json
4
+ ! / .travis.yml
5
+ package-lock.json
6
+ / bower_components /
7
+ / node_modules /
8
+ / output /
Original file line number Diff line number Diff line change @@ -2,11 +2,17 @@ language: node_js
2
2
dist : trusty
3
3
sudo : required
4
4
node_js : stable
5
+ env :
6
+ - PATH=$HOME/purescript:$PATH
5
7
install :
8
+ - TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
9
+ - wget -O $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
6
12
- npm install -g bower
7
13
- npm install
8
- - bower install
9
14
script :
15
+ - bower install
10
16
- npm run -s build
11
17
after_success :
12
18
- >-
Original file line number Diff line number Diff line change 15
15
" package.json"
16
16
],
17
17
"dependencies" : {
18
- "purescript-js-date" : " #compiler/0.12 " ,
19
- "purescript-web-dom" : " #compiler/0.12 " ,
20
- "purescript-web-file" : " #compiler/0.12 " ,
21
- "purescript-web-storage" : " #compiler/0.12 "
18
+ "purescript-js-date" : " ^6.0.0 " ,
19
+ "purescript-web-dom" : " ^1.0.0 " ,
20
+ "purescript-web-file" : " ^1.0.0 " ,
21
+ "purescript-web-storage" : " ^2.0.0 "
22
22
}
23
23
}
Original file line number Diff line number Diff line change 8
8
"eslint" : " ^4.19.1" ,
9
9
"pulp" : " ^12.2.0" ,
10
10
"purescript-psa" : " ^0.6.0" ,
11
- "purescript" : " ^0.11.7" ,
12
11
"rimraf" : " ^2.6.2"
13
12
}
14
13
}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ import Web.HTML.HTMLDocument (HTMLDocument)
46
46
import Web.HTML.History (History )
47
47
import Web.HTML.Location (Location )
48
48
import Web.HTML.Navigator (Navigator )
49
- import Web.WebStorage .Storage (Storage )
49
+ import Web.Storage .Storage (Storage )
50
50
51
51
foreign import data Window :: Type
52
52
You can’t perform that action at this time.
0 commit comments