Skip to content

Commit d8c2dcb

Browse files
committed
chore: update todo comment, #12
1 parent 7dea7f5 commit d8c2dcb

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/devtools-webext/src/devtools-background.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const checkViteInterval = window.setInterval(() => {
1313
}, 1000)
1414

1515
function createDevToolsPanel() {
16-
// TODO: detect vite env
16+
// TODO (hold-off): detect vite env
1717
chrome.devtools.inspectedWindow.eval('true', (detected) => {
1818
if (!detected || checkInfo.viteDetected) {
1919
return

packages/devtools-webext/src/window.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { VITE_DEVTOOLS_NAMESPACE, ViteDevToolsEvent } from './event'
33

44
setNamespace(VITE_DEVTOOLS_NAMESPACE)
55
onMessage(ViteDevToolsEvent.GET_METADATA, () => {
6-
// TODO: get metadata from api endpoint
6+
// TODO (hold-off): get metadata from api endpoint
77
return {
88
backend: 'websocket',
99
websocket: `${location.protocol.replace('http', 'ws')}//${location.hostname}:7812`,

packages/devtools/src/app/components/flowmap/ModuleFlow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ const codeDisplay = computed(() => {
375375
</template>
376376
<template v-else-if="selected?.type === 'asset'">
377377
<div p4>
378-
Assets Details (TODO)
378+
Assets Details (WIP)
379379
- Trace back to the chunk
380380
- A button to open the asset in the editor
381381
- A button to show source in the page

packages/devtools/src/app/modules/rpc/runtime/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default defineNuxtPlugin({
3636
async function connectToServer() {
3737
const metadata = await getMetadata()
3838
if (metadata.backend === 'static') {
39-
// TODO: static server
39+
// TODO (hold-off): static server
4040
}
4141
else {
4242
const url = isNumeric(metadata.websocket) ? `${location.protocol.replace('http', 'ws')}//${location.hostname}:${metadata.websocket}` : metadata.websocket

packages/devtools/src/app/pages/session/[session]/assets.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const { state: assets } = useAsyncState(
2222
<div p5 flex="~ col gap-4">
2323
Assets
2424
<!--
25-
TODO:
25+
WIP:
2626
- Use tree view to show assets
2727
- Show asssets detail on the right panel
2828
- View of Flamechart with nanovis

0 commit comments

Comments
 (0)