File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 11export type BrowserPlatform = 'windows' | 'mac' | 'linux' ;
22
33export type KnownTarget =
4+ | 'arc'
45 | 'chromium'
56 | 'chrome'
67 | 'chrome-beta'
78 | 'chrome-dev'
89 | 'chrome-canary'
10+ | 'dia'
911 | 'edge'
1012 | 'edge-beta'
1113 | 'edge-dev'
@@ -21,6 +23,11 @@ export const KNOWN_BROWSER_PATHS: Record<
2123> = {
2224 // Chromium based targets
2325
26+ arc : {
27+ mac : [ '/Applications/Arc.app/Contents/MacOS/Arc' ] ,
28+ linux : [ ] ,
29+ windows : [ ] ,
30+ } ,
2431 chromium : {
2532 mac : [ ] ,
2633 linux : [
@@ -55,6 +62,11 @@ export const KNOWN_BROWSER_PATHS: Record<
5562 linux : [ ] ,
5663 windows : [ ] ,
5764 } ,
65+ dia : {
66+ mac : [ '/Applications/Dia.app/Contents/MacOS/Dia' ] ,
67+ linux : [ ] ,
68+ windows : [ ] ,
69+ } ,
5870 edge : {
5971 mac : [ ] ,
6072 linux : [ ] ,
@@ -116,10 +128,12 @@ export const KNOWN_BROWSER_PATHS: Record<
116128 */
117129export const FALLBACK_TARGETS : Partial < Record < KnownTarget , KnownTarget [ ] > > = {
118130 chrome : [
131+ 'arc' ,
119132 'chromium' ,
120133 'chrome-canary' ,
121134 'chrome-beta' ,
122135 'chrome-dev' ,
136+ 'dia' ,
123137 'edge' ,
124138 'edge-canary' ,
125139 'edge-beta' ,
You can’t perform that action at this time.
0 commit comments