Skip to content

Commit 6823cbf

Browse files
committed
ci: don't run local-deps in npm run build
1 parent eaa8077 commit 6823cbf

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

extensions/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"build:local-deps": "cd ../../packages/config-types && npm i && npm run build && cd ../fetch && npm i && npm run build && cd ../llm-info && npm i && npm run build && cd ../config-yaml && npm i && npm run build && cd ../openai-adapters && npm i && npm run build && cd ../../core && npm i && cd ../extensions/cli && npm i",
1919
"build:validate": "node validate-aliases.mjs",
2020
"build:bundle": "node build.mjs",
21-
"build": "npm run build:local-deps && npm run build:validate && npm run build:bundle",
21+
"build": "npm run build:validate && npm run build:bundle",
2222
"start": "node dist/cn.js",
2323
"dev": "tsx src/index.ts",
2424
"repomix:sdk": "npx repomix node_modules/@continuedev/sdk --ignore **/api,cli-repomix.xml -o sdk-repomix.xml",

extensions/cli/src/ui/components/MemoizedMessage.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ export const MemoizedMessage = memo<MemoizedMessageProps>(
2121
return (
2222
<Box key={index} marginLeft={1} marginBottom={1}>
2323
{/* TODO: Change back to empty circle (○) with white color once we want to differentiate in-progress vs completed tool calls */}
24-
<Text color="green"><Text color="white"> {message.content}</Text></Text>
24+
<Text color="green">
25+
<Text color="white"> {message.content}</Text>
26+
</Text>
2527
</Box>
2628
);
2729

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)