File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -30,16 +30,6 @@ export default {
30
30
} ,
31
31
{ format : 'cjs' , dir : 'dist/cjs/' }
32
32
] ,
33
- moduleContext : id => {
34
- const thisAsWindowForModules = [
35
- 'node_modules/intl-messageformat/lib/core.js' ,
36
- 'node_modules/intl-messageformat/lib/compiler.js'
37
- ]
38
-
39
- if ( thisAsWindowForModules . some ( id_ => id . trimRight ( ) . endsWith ( id_ ) ) ) {
40
- return 'window'
41
- }
42
- } ,
43
33
plugins : [
44
34
json ( ) ,
45
35
image ( ) ,
@@ -64,6 +54,7 @@ export default {
64
54
'fortmatic' ,
65
55
'squarelink' ,
66
56
'authereum' ,
57
+ 'lodash.debounce' ,
67
58
'regenerator-runtime/runtime'
68
59
]
69
60
}
Original file line number Diff line number Diff line change 1
1
import { writable , derived , get } from 'svelte/store'
2
- import debounce from 'lodash.debounce'
3
2
import { getBlocknative } from './services'
4
3
import { wait , makeQuerablePromise } from './utilities'
5
4
import { validateWalletInterface , validateType } from './validation'
@@ -13,6 +12,7 @@ import {
13
12
} from './interfaces'
14
13
15
14
const { default : Cancelable } = require ( 'promise-cancelable' )
15
+ const debounce = require ( 'lodash.debounce' )
16
16
17
17
export const app : WritableStore = writable ( {
18
18
dappId : '' ,
You can’t perform that action at this time.
0 commit comments