Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Nov 11, 2024
1 parent 5867e95 commit 63fbc9c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 70 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@
"smartStep": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
"cwd": "${workspaceFolder}"
},

{
"type": "node",
"request": "launch",
"name": "Launch Sample Emitter",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/samples/client-emitter/dist/src/index.js",
"outFiles": ["${workspaceFolder}/**/*.js"],
"smartStep": true,
"console": "internalConsole",
"outputCapture": "std",
"autoAttachChildProcesses": true,
"env": {
"FORCE_COLOR": "3"
},
}
]
}
64 changes: 0 additions & 64 deletions packages/core/src/components/Slot.tsx

This file was deleted.

7 changes: 1 addition & 6 deletions packages/core/src/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ const debug: DebugInterface = {
component: {
stack: debugStack,
tree() {
for (let i = 0; i < 240; i += 10) {
for (let j = 0; j < 240; j += 10) {
process.stdout.write(chalk.bgRgb(i, j, 0)(" "));
}
process.stdout.write("\n");
}
console.log("tree");

Check warning on line 21 in packages/core/src/debug.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement
},
watch() {
console.log("watch");

Check warning on line 24 in packages/core/src/debug.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement
Expand Down

0 comments on commit 63fbc9c

Please sign in to comment.