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
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 1515 " package.json"
1616 ],
1717 "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"
2020 }
2121}
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" ,
11- "rimraf" : " ^2.6.2"
11+ "purs-tidy" : " ^0.9.2" ,
12+ "rimraf" : " ^3.0.2"
1213 }
1314}
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import Prelude
44
55import Data.Maybe (Maybe )
66import Effect (Effect )
7+ import Promise (Promise )
78import Unsafe.Coerce (unsafeCoerce )
89import Web.Event.Internal.Types (EventTarget )
910import Web.HTML (Navigator )
1011import Web.Internal.FFI (unsafeReadProtoTagged )
11- import Web.Promise (Promise )
1212
1313foreign import clipboard :: Navigator -> Effect Clipboard
1414
You can’t perform that action at this time.
0 commit comments