File tree Expand file tree Collapse file tree 5 files changed +19
-7
lines changed Expand file tree Collapse file tree 5 files changed +19
-7
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 15
15
" package.json"
16
16
],
17
17
"dependencies" : {
18
- "purescript-web-html " : " ^4 .0.0" ,
19
- "purescript-web-promise " : " purescript-web/purescript-web-promise#^3.0 .0"
18
+ "purescript-js-promise " : " purescript-contrib/purescript-js-promise#^1 .0.0" ,
19
+ "purescript-web-html " : " ^4.1 .0"
20
20
}
21
21
}
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
- "rimraf" : " ^2.6.2"
11
+ "purs-tidy" : " ^0.9.2" ,
12
+ "rimraf" : " ^3.0.2"
12
13
}
13
14
}
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import Prelude
4
4
5
5
import Data.Maybe (Maybe )
6
6
import Effect (Effect )
7
+ import Promise (Promise )
7
8
import Unsafe.Coerce (unsafeCoerce )
8
9
import Web.Event.Internal.Types (EventTarget )
9
10
import Web.HTML (Navigator )
10
11
import Web.Internal.FFI (unsafeReadProtoTagged )
11
- import Web.Promise (Promise )
12
12
13
13
foreign import clipboard :: Navigator -> Effect Clipboard
14
14
You can’t perform that action at this time.
0 commit comments