Skip to content

Commit 40b8ae1

Browse files
author
Recursively.ai
authored
Merge pull request CopilotKit#12 from RecursivelyAI/atai/0822/cleanroot
clean root + publish packages
2 parents 09dbdef + c9ac15b commit 40b8ae1

156 files changed

Lines changed: 85 additions & 39 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,5 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
# dependencies
4-
node_modules
5-
.pnp
6-
.pnp.js
7-
8-
# testing
9-
coverage
10-
11-
# next.js
12-
.next/
13-
out/
14-
build
15-
.swc/
16-
173
# misc
184
.DS_Store
195
*.pem
20-
21-
# debug
22-
npm-debug.log*
23-
yarn-debug.log*
24-
yarn-error.log*
25-
26-
# local env files
27-
.env.local
28-
.env.development.local
29-
.env.test.local
30-
.env.production.local
31-
32-
# turbo
33-
.turbo
34-
35-
# ui
36-
dist/
File renamed without changes.

CopilotKit/.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
.pnp
6+
.pnp.js
7+
8+
# testing
9+
coverage
10+
11+
# next.js
12+
.next/
13+
out/
14+
build
15+
.swc/
16+
17+
# misc
18+
.DS_Store
19+
*.pem
20+
21+
# debug
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# turbo
33+
.turbo
34+
35+
# ui
36+
dist/
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"run",
1111
"dev"
1212
],
13-
"cwd": "${workspaceFolder}/examples/next-openai",
13+
"cwd": "${workspaceFolder}/CopilotKit/examples/next-openai",
1414
"console": "integratedTerminal",
1515
"internalConsoleOptions": "neverOpen",
1616
"resolveSourceMapLocations": [
17-
"${workspaceFolder}/**",
17+
"${workspaceFolder}/CopilotKit/**",
1818
"!**/node_modules/**"
1919
],
2020
"sourceMaps": true
@@ -24,7 +24,7 @@
2424
"type": "chrome",
2525
"request": "launch",
2626
"url": "http://localhost:3000/",
27-
"webRoot": "${workspaceFolder}/examples/next-openai",
27+
"webRoot": "${workspaceFolder}/CopilotKit/examples/next-openai",
2828
"sourceMaps": true
2929
}
3030
],

0 commit comments

Comments
 (0)