We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6be6f73 commit 6906c64Copy full SHA for 6906c64
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@leaphy-robotics/playwright-arduino",
3
- "version": "1.0.2",
+ "version": "1.0.3",
4
"license": "LGPL-3.0-only",
5
"main": "./dist/index.js",
6
"type": "module",
src/board.ts
@@ -7,7 +7,8 @@ class Board {
7
8
constructor() {
9
this.process = spawn('./simduino', {
10
- cwd: `${import.meta.dirname}/../build`
+ cwd: `${import.meta.dirname}/../build`,
11
+ stdio: 'inherit'
12
})
13
}
14
0 commit comments