File tree Expand file tree Collapse file tree 7 files changed +23
-9
lines changed Expand file tree Collapse file tree 7 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "importSort" : " ide" ,
3+ "importWrap" : " source" ,
4+ "indent" : 2 ,
5+ "operatorsFile" : null ,
6+ "ribbon" : 1 ,
7+ "typeArrowPlacement" : " first" ,
8+ "unicode" : " never" ,
9+ "width" : null
10+ }
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Notable changes to this project are documented in this file. The format is based
55## [ Unreleased]
66
77Breaking changes:
8+ - Migrated from ` web-promise ` to ` js-promise `
89
910New features:
1011
Original file line number Diff line number Diff line change 1818 "purescript-arraybuffer-types" : " ^3.0.2" ,
1919 "purescript-effect" : " ^4.0.0" ,
2020 "purescript-exceptions" : " ^6.0.0" ,
21+ "purescript-js-promise" : " https://github.com/purescript-contrib/purescript-js-promise.git#^1.0.0" ,
2122 "purescript-nullable" : " ^6.0.0" ,
22- "purescript-prelude" : " ^6.0.0" ,
23- "purescript-tuples" : " ^7.0.0" ,
24- "purescript-web-promise" : " https://github.com/purescript-web/purescript-web-promise.git#^3.0.0"
23+ "purescript-prelude" : " ^6.0.1" ,
24+ "purescript-tuples" : " ^7.0.0"
2525 }
2626}
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "clean" : " rimraf output && rimraf .pulp-cache" ,
5- "build" : " eslint src && pulp build -- --censor-lib --strict"
5+ "build" : " eslint src && purs-tidy check --config-require src/**/*.purs && pulp build -- --censor-lib --strict"
66 },
77 "devDependencies" : {
8- "eslint" : " ^7.15 .0" ,
9- "pulp" : " 16.0.0-0 " ,
8+ "eslint" : " ^8.28 .0" ,
9+ "pulp" : " ^ 16.0.2 " ,
1010 "purescript-psa" : " ^0.8.2" ,
1111 "rimraf" : " ^3.0.2"
12+ },
13+ "dependencies" : {
14+ "purs-tidy" : " ^0.9.2"
1215 }
1316}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import Data.Tuple (Tuple(..))
1313import Effect (Effect )
1414import Effect.Uncurried (EffectFn2 , runEffectFn2 )
1515import Prelude (Unit )
16- import Web. Promise (Promise )
16+ import Promise (Promise )
1717import Web.Streams.QueuingStrategy (QueuingStrategy )
1818import Web.Streams.Reader (Reader )
1919import Web.Streams.Source (Source )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module Web.Streams.Reader where
33import Data.Maybe (Maybe (..))
44import Effect (Effect )
55import Effect.Uncurried (EffectFn3 , runEffectFn3 )
6- import Web. Promise (Promise )
6+ import Promise (Promise )
77
88foreign import data Reader :: Type -> Type
99
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module Web.Streams.Source
66import Effect (Effect )
77import Prelude (Unit )
88import Prim.Row as Row
9- import Web. Promise (Promise )
9+ import Promise (Promise )
1010import Web.Streams.ReadableStreamController (ReadableStreamController )
1111
1212foreign import data Source :: Type -> Type
You can’t perform that action at this time.
0 commit comments