Skip to content

Commit db0f2af

Browse files
authored
Feat/devtools option (#33)
* feat: add devtools flag * chore: adding changeset * chore: update changeset
1 parent 3174092 commit db0f2af

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.changeset/dull-candles-exercise.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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.

bin/cli.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const program = new Command();
1616
program
1717
.argument('<file>', 'file to execute in the browser.')
1818
.option('--headless [boolean]', 'specify running the browser in headless mode.')
19+
.option('--devtools [boolean]', 'open browser devtools automatically.')
1920
.option('--url [string]', 'specify a specific url to execute the code in.')
2021
.version(pkg.version)
2122
program.parse(process.argv);
@@ -28,6 +29,7 @@ class Processor extends EventTarget {
2829
super();
2930
this.url = opts['url'];
3031
this.headless = opts['headless'];
32+
this.devtools = opts['devtools'];
3133
this._func = '';
3234
this.watcher();
3335
browser(this);
@@ -54,7 +56,6 @@ class Processor extends EventTarget {
5456
}
5557

5658
async build() {
57-
console.log('build')
5859
try {
5960
if (file.endsWith('.ts')) {
6061
const { outputFiles: [stdout]} = await esbuild.build({

src/browser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function nodelog(value) {
1919
export async function browser(processor) {
2020
// Launch the browser
2121
const browser = await playwright['chromium'].launch({
22-
headless: processor.headless,
23-
devtools: true
22+
headless: !!processor.headless,
23+
devtools: !!processor.devtools
2424
});
2525
const context = await browser.newContext();
2626
const page = await context.newPage();

0 commit comments

Comments
 (0)