Skip to content

Commit

Permalink
fix: update monaco
Browse files Browse the repository at this point in the history
  • Loading branch information
Loïc Mangeonjean committed Feb 19, 2024
1 parent 53db70a commit 4e724bf
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,23 @@ ${files.map((_, index) => ` whenReady${index}()`).join(',\n')}
breakpoints,
taskDefinitions,
viewsWelcome,
terminal,
viewsContainers,
...remainingContribute
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} = manifest.contributes as any
} = manifest.contributes ?? {}

const {
activationEvents,
devDependencies,
dependencies,
scripts,
browser,
main,
l10n,
extensionDependencies, // for pure-d that requires hbenl.vscode-test-explorer
...remainingManifest
} = manifest
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} = manifest as any

return {
...remainingManifest,
Expand Down

0 comments on commit 4e724bf

Please sign in to comment.