From fc02c6938c298525f0c06b0e8ebd628ef806b4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mangeonjean?= Date: Tue, 11 Jun 2024 11:11:31 +0200 Subject: [PATCH] feat: add profile services --- rollup.config.ts | 3 ++- src/features/profile.ts | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/features/profile.ts diff --git a/rollup.config.ts b/rollup.config.ts index 2bde67a..9fda901 100644 --- a/rollup.config.ts +++ b/rollup.config.ts @@ -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', diff --git a/src/features/profile.ts b/src/features/profile.ts new file mode 100644 index 0000000..3e3ff77 --- /dev/null +++ b/src/features/profile.ts @@ -0,0 +1,6 @@ +import getProfileServiceOverride from '@codingame/monaco-vscode-user-data-profile-service-override' +import { registerServices } from '../services' + +registerServices({ + ...getProfileServiceOverride() +})