This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : node_js
2- sudo : false
3- node_js :
4- - 0.10
2+ dist : trusty
3+ sudo : required
4+ node_js : 6
55install :
66 - npm install -g bower
77 - npm install
8- - bower install --production
98script :
10- - npm run build
11- - npm run test
9+ - bower install --production
10+ - npm run -s build
11+ - bower install
12+ - npm -s test
13+ after_success :
14+ - >-
15+ test $TRAVIS_TAG &&
16+ echo $GITHUB_TOKEN | pulp login &&
17+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 11{
22 "name" : " purescript-lens" ,
3- "version" : " 1.0.1" ,
43 "description" : " PureScript implementation of Lens." ,
54 "license" : " MIT" ,
65 "homepage" : " https://github.com/joneshf/purescript-lens" ,
2928 "purescript-profunctor" : " ^2.0.0"
3029 },
3130 "devDependencies" : {
31+ "purescript-psci-support" : " ^2.0.0" ,
3232 "purescript-console" : " ^2.0.0"
3333 }
3434}
Original file line number Diff line number Diff line change 1919 "scripts" : {
2020 "clean" : " rimraf output && rimraf .pulp-cache" ,
2121 "docs" : " pulp docs" ,
22- "build" : " pulp build --censor-lib --strict" ,
22+ "build" : " pulp build -- -- censor-lib --strict" ,
2323 "test" : " pulp test"
2424 },
2525 "devDependencies" : {
26- "pulp" : " ^9.0.0" ,
27- "purescript-psa" : " ^0.3.8" ,
28- "rimraf" : " ^2.5.0"
26+ "pulp" : " ^10.0.0" ,
27+ "purescript" : " ^0.10.2" ,
28+ "purescript-psa" : " ^0.4.0" ,
29+ "rimraf" : " ^2.5.4"
2930 }
3031}
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ module Optic.Getter
77
88 import Data.Const (Const (..))
99 import Data.Functor.Contravariant (class Contravariant , coerce )
10- import Data.Profunctor (class Profunctor , dimap )
1110 import Data.Newtype (unwrap )
12-
11+ import Data.Profunctor (class Profunctor , dimap )
12+
1313 import Optic.Types (Getting ())
1414
1515 import Prelude (class Functor , flip )
You can’t perform that action at this time.
0 commit comments