Skip to content

Commit 6d954e8

Browse files
authored
Merge pull request #575 from CodinGame/fix-monaco-editor-module-exposure
Fix wrong monaco-editor module exposure
2 parents 4a7cc3e + 9a3e6a7 commit 6d954e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rollup/tools/configuredSubpackagePlugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,13 @@ export function configuredSubpackagePlugin(): rollup.Plugin {
269269
this.emitFile({
270270
fileName: `esm/${modulePath}.js`,
271271
needsCodeReference: false,
272-
source: `export * from 'vscode/vscode/${modulePath}'`,
272+
source: `export * from '@codingame/monaco-vscode-api/vscode/${modulePath}'`,
273273
type: 'asset'
274274
})
275275
this.emitFile({
276276
fileName: `esm/${modulePath}.d.ts`,
277277
needsCodeReference: false,
278-
source: `export * from 'vscode/vscode/${modulePath}'`,
278+
source: `export * from '@codingame/monaco-vscode-api/vscode/${modulePath}'`,
279279
type: 'asset'
280280
})
281281
}

0 commit comments

Comments
 (0)