Skip to content

Commit

Permalink
feat: add profile services
Browse files Browse the repository at this point in the history
  • Loading branch information
Loïc Mangeonjean committed Jun 11, 2024
1 parent 319cd4a commit fc02c69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export default rollup.defineConfig({
'features/extensionHostWorker': 'src/features/extensionHostWorker.ts',
'features/notifications': 'src/features/notifications.ts',
'features/extensionGallery': 'src/features/extensionGallery.ts',
'features/workbench': 'src/features/workbench.ts'
'features/workbench': 'src/features/workbench.ts',
'features/profile': 'src/features/profile.ts'
},
output: [{
dir: 'dist',
Expand Down
6 changes: 6 additions & 0 deletions src/features/profile.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import getProfileServiceOverride from '@codingame/monaco-vscode-user-data-profile-service-override'
import { registerServices } from '../services'

registerServices({
...getProfileServiceOverride()
})

0 comments on commit fc02c69

Please sign in to comment.