Skip to content

Commit 20691fb

Browse files
chat functionality fixed
1 parent 73e0227 commit 20691fb

17 files changed

Lines changed: 45 additions & 98 deletions

File tree

app/lib/runtime/message-parser.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ function cleanEscapedTags(content: string) {
8282
}
8383
export class StreamingMessageParser {
8484
#messages = new Map<string, MessageState>();
85-
#artifactCounter = 0;
8685

8786
constructor(private _options: StreamingMessageParserOptions = {}) {}
8887

app/routes/_index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import { Header } from '~/components/header/Header';
66
import BackgroundRays from '~/components/ui/BackgroundRays';
77

88
export const meta: MetaFunction = () => {
9-
return [{ title: 'CodinIT' }, { name: 'description', content: 'Talk with CodinIT, an AI assistant from StackBlitz' }];
9+
return [
10+
{ title: 'CodinIT' },
11+
{ name: 'description', content: 'Talk with CodinIT, an AI assistant from CodinIT.dev' },
12+
];
1013
};
1114

1215
export const loader = () => json({});

app/routes/git.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ import { Header } from '~/components/header/Header';
77
import BackgroundRays from '~/components/ui/BackgroundRays';
88

99
export const meta: MetaFunction = () => {
10-
return [{ title: 'CodinIT' }, { name: 'description', content: 'Talk with CodinIT, an AI assistant from StackBlitz' }];
10+
return [
11+
{ title: 'CodinIT' },
12+
{ name: 'description', content: 'Talk with CodinIT, an AI assistant from CodinIT.dev' },
13+
];
1114
};
1215

1316
export async function loader(args: LoaderFunctionArgs) {

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"@uiw/codemirror-theme-vscode": "^4.25.2",
104104
"@unocss/reset": "^0.61.9",
105105
"@webcontainer/api": "1.6.1-internal.1",
106+
"@webcontainer/test": "^0.2.0",
106107
"@xterm/addon-fit": "^0.10.0",
107108
"@xterm/addon-web-links": "^0.11.0",
108109
"@xterm/xterm": "^5.5.0",

pnpm-lock.yaml

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/codinit-expo/tsconfig.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,5 @@
66
"@/*": ["./*"]
77
}
88
},
9-
"include": [
10-
"**/*.ts",
11-
"**/*.tsx",
12-
".expo/types/**/*.ts",
13-
"expo-env.d.ts",
14-
"nativewind-env.d.ts"
15-
]
9+
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts"]
1610
}

templates/sveltekit/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

templates/sveltekit/jsconfig.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

templates/sveltekit/package.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

templates/sveltekit/src/app.d.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)