File tree 7 files changed +23
-9
lines changed
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
5
5
## [ Unreleased]
6
6
7
7
Breaking changes:
8
+ - Migrated from ` web-promise ` to ` js-promise `
8
9
9
10
New features:
10
11
Original file line number Diff line number Diff line change 18
18
"purescript-arraybuffer-types" : " ^3.0.2" ,
19
19
"purescript-effect" : " ^4.0.0" ,
20
20
"purescript-exceptions" : " ^6.0.0" ,
21
+ "purescript-js-promise" : " https://github.com/purescript-contrib/purescript-js-promise.git#^1.0.0" ,
21
22
"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"
25
25
}
26
26
}
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"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"
6
6
},
7
7
"devDependencies" : {
8
- "eslint" : " ^7.15 .0" ,
9
- "pulp" : " 16.0.0-0 " ,
8
+ "eslint" : " ^8.28 .0" ,
9
+ "pulp" : " ^ 16.0.2 " ,
10
10
"purescript-psa" : " ^0.8.2" ,
11
11
"rimraf" : " ^3.0.2"
12
+ },
13
+ "dependencies" : {
14
+ "purs-tidy" : " ^0.9.2"
12
15
}
13
16
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import Data.Tuple (Tuple(..))
13
13
import Effect (Effect )
14
14
import Effect.Uncurried (EffectFn2 , runEffectFn2 )
15
15
import Prelude (Unit )
16
- import Web. Promise (Promise )
16
+ import Promise (Promise )
17
17
import Web.Streams.QueuingStrategy (QueuingStrategy )
18
18
import Web.Streams.Reader (Reader )
19
19
import Web.Streams.Source (Source )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module Web.Streams.Reader where
3
3
import Data.Maybe (Maybe (..))
4
4
import Effect (Effect )
5
5
import Effect.Uncurried (EffectFn3 , runEffectFn3 )
6
- import Web. Promise (Promise )
6
+ import Promise (Promise )
7
7
8
8
foreign import data Reader :: Type -> Type
9
9
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module Web.Streams.Source
6
6
import Effect (Effect )
7
7
import Prelude (Unit )
8
8
import Prim.Row as Row
9
- import Web. Promise (Promise )
9
+ import Promise (Promise )
10
10
import Web.Streams.ReadableStreamController (ReadableStreamController )
11
11
12
12
foreign import data Source :: Type -> Type
You can’t perform that action at this time.
0 commit comments