File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,11 @@ export function useStore(
142
142
}
143
143
}
144
144
145
- function setImportMap ( map : ImportMap ) {
145
+ function setImportMap ( map : ImportMap , merge = false ) {
146
+ if ( merge ) {
147
+ map = mergeImportMap ( getImportMap ( ) , map )
148
+ }
149
+
146
150
if ( map . imports )
147
151
for ( const [ key , value ] of Object . entries ( map . imports ) ) {
148
152
if ( value ) {
@@ -368,6 +372,7 @@ export function useStore(
368
372
deleteFile,
369
373
renameFile,
370
374
getImportMap,
375
+ setImportMap,
371
376
getTsConfig,
372
377
serialize,
373
378
deserialize,
@@ -436,6 +441,7 @@ export interface ReplStore extends UnwrapRef<StoreState> {
436
441
deleteFile ( filename : string ) : void
437
442
renameFile ( oldFilename : string , newFilename : string ) : void
438
443
getImportMap ( ) : ImportMap
444
+ setImportMap ( map : ImportMap , merge ?: boolean ) : void
439
445
getTsConfig ( ) : Record < string , any >
440
446
serialize ( ) : string
441
447
deserialize ( serializedState : string ) : void
You can’t perform that action at this time.
0 commit comments