Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/studio/src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ const OperationsNavigation: React.FunctionComponent<NavigationSectionProps> = ({
>
<div className="flex flex-row">
<div className="flex-none">
<span className="mr-3 text-xs uppercase text-blue-500 font-bold">
Pub
<span className="mr-3 text-xs uppercase text-green-600 font-bold">
Sub
</span>
</div>
<span className="truncate">{channelName}</span>
Expand Down Expand Up @@ -147,8 +147,8 @@ const OperationsNavigation: React.FunctionComponent<NavigationSectionProps> = ({
>
<div className="flex flex-row">
<div className="flex-none">
<span className="mr-3 text-xs uppercase text-green-600 font-bold">
Sub
<span className="mr-3 text-xs uppercase text-blue-500 font-bold">
Pub
</span>
</div>
<span className="truncate">{channelName}</span>
Expand Down
5 changes: 3 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"types": "dist/index.d.ts",
"private": true,
"scripts": {
"build": "tsup"
"build": "tsup",
"dev": "tsup --watch"
},
"keywords": [],
"author": "",
Expand All @@ -18,4 +19,4 @@
"devDependencies": {
"tsup": "^8.0.2"
}
}
}
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"cache": false
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
Expand Down