Skip to content

Commit d7cc14d

Browse files
author
Loïc Mangeonjean
committed
fix: fix workbench feature
1 parent 7c1eba0 commit d7cc14d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
"./features/extensionGallery": {
5252
"types": "./dist/features/extensionGallery.d.ts",
5353
"default": "./dist/features/extensionGallery.js"
54+
},
55+
"./features/workbench": {
56+
"types": "./dist/features/workbench.d.ts",
57+
"default": "./dist/features/workbench.js"
5458
}
5559
},
5660
"typesVersions": {

rollup.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export default rollup.defineConfig({
2525
'features/debug': 'src/features/debug.ts',
2626
'features/extensionHostWorker': 'src/features/extensionHostWorker.ts',
2727
'features/notifications': 'src/features/notifications.ts',
28-
'features/extensionGallery': 'src/features/extensionGallery.ts'
28+
'features/extensionGallery': 'src/features/extensionGallery.ts',
29+
'features/workbench': 'src/features/workbench.ts'
2930
},
3031
output: [{
3132
dir: 'dist',

0 commit comments

Comments
 (0)