File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @heymp/scratchpad " : minor
3
+ ---
4
+
5
+ Open devtools automatically with cli flag. Use the ` --devtools ` flag
6
+ to enable the devtools in the browser.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const program = new Command();
16
16
program
17
17
. argument ( '<file>' , 'file to execute in the browser.' )
18
18
. option ( '--headless [boolean]' , 'specify running the browser in headless mode.' )
19
+ . option ( '--devtools [boolean]' , 'open browser devtools automatically.' )
19
20
. option ( '--url [string]' , 'specify a specific url to execute the code in.' )
20
21
. version ( pkg . version )
21
22
program . parse ( process . argv ) ;
@@ -28,6 +29,7 @@ class Processor extends EventTarget {
28
29
super ( ) ;
29
30
this . url = opts [ 'url' ] ;
30
31
this . headless = opts [ 'headless' ] ;
32
+ this . devtools = opts [ 'devtools' ] ;
31
33
this . _func = '' ;
32
34
this . watcher ( ) ;
33
35
browser ( this ) ;
@@ -54,7 +56,6 @@ class Processor extends EventTarget {
54
56
}
55
57
56
58
async build ( ) {
57
- console . log ( 'build' )
58
59
try {
59
60
if ( file . endsWith ( '.ts' ) ) {
60
61
const { outputFiles : [ stdout ] } = await esbuild . build ( {
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ function nodelog(value) {
19
19
export async function browser ( processor ) {
20
20
// Launch the browser
21
21
const browser = await playwright [ 'chromium' ] . launch ( {
22
- headless : processor . headless ,
23
- devtools : true
22
+ headless : ! ! processor . headless ,
23
+ devtools : ! ! processor . devtools
24
24
} ) ;
25
25
const context = await browser . newContext ( ) ;
26
26
const page = await context . newPage ( ) ;
You can’t perform that action at this time.
0 commit comments