File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ import {
17
17
extensionBuild ,
18
18
type BuildOptions ,
19
19
// extensionPreview,
20
- type FileConfig
20
+ type FileConfig ,
21
+ type Manifest
21
22
} from 'extension-develop'
22
23
import * as messages from './cli-lib/messages'
23
24
import type { BrowsersSupported } from './types'
24
25
import checkUpdates from './check-updates'
25
26
import packageJson from './package.json'
26
27
27
- export { type FileConfig }
28
+ export { type FileConfig , type Manifest }
28
29
29
30
// Before all, check for updates.
30
31
checkUpdates ( packageJson )
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import {extensionDev, type DevOptions} from './commands/dev'
10
10
import { extensionPreview , type PreviewOptions } from './commands/preview'
11
11
import { extensionStart , type StartOptions } from './commands/start'
12
12
import { type FileConfig } from './commands/commands-lib/config-types'
13
+ import { type Manifest } from './types'
13
14
14
15
export {
15
16
extensionBuild ,
@@ -20,5 +21,6 @@ export {
20
21
StartOptions ,
21
22
extensionPreview ,
22
23
PreviewOptions ,
23
- FileConfig
24
+ FileConfig ,
25
+ Manifest
24
26
}
You can’t perform that action at this time.
0 commit comments