@sourcegraph/cody-web 0.32.1 → 0.32.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{agent.worker-CKzz1GcO.mjs → agent.worker-BQ1q_FR7.mjs} +59 -46
- package/dist/agent.worker.js +2 -2
- package/dist/{git-log-bbWyul1E.mjs → git-log-DHqBtvQi.mjs} +1 -1
- package/dist/{index-zVNzRGEc.mjs → index-B49HuzD8.mjs} +2 -2
- package/dist/index.js +164 -135
- package/dist/lib/components/CodyPromptTemplate.d.ts.map +1 -1
- package/dist/style.css +74 -59
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/util-JO1f7DJy.mjs +1811 -0
- package/dist/{vscode-shim-BmcAncjv.mjs → vscode-shim-CIaiKx3C.mjs} +6 -6
- package/package.json +3 -3
- package/dist/util-B-IYnWCp.mjs +0 -2033
|
@@ -5444,7 +5444,7 @@ async function executeCommand(cmd) {
|
|
|
5444
5444
|
throw new Error("Command execution is only supported in Node.js environments");
|
|
5445
5445
|
}
|
|
5446
5446
|
const { exec: exec2 } = await Promise.resolve().then(() => child_process);
|
|
5447
|
-
const { promisify: promisify2 } = await import("./util-
|
|
5447
|
+
const { promisify: promisify2 } = await import("./util-JO1f7DJy.mjs").then((n2) => n2.u);
|
|
5448
5448
|
const execAsync = promisify2(exec2);
|
|
5449
5449
|
const command = cmd.commandLine.join(" ");
|
|
5450
5450
|
const { stdout } = await execAsync(command, {
|
|
@@ -44644,7 +44644,7 @@ var camelCase = createCompounder(function(result, word, index) {
|
|
|
44644
44644
|
var camelCase_1 = camelCase;
|
|
44645
44645
|
const camelCase$1 = /* @__PURE__ */ getDefaultExportFromCjs(camelCase_1);
|
|
44646
44646
|
const name = "cody-ai";
|
|
44647
|
-
const version = "1.
|
|
44647
|
+
const version = "1.72.0";
|
|
44648
44648
|
const publisher = "sourcegraph";
|
|
44649
44649
|
const contributes = {
|
|
44650
44650
|
configuration: {
|
|
@@ -47974,10 +47974,10 @@ export {
|
|
|
47974
47974
|
ccount as bC,
|
|
47975
47975
|
isCodyProUser as bD,
|
|
47976
47976
|
CodyIDE as bE,
|
|
47977
|
-
|
|
47978
|
-
|
|
47979
|
-
|
|
47980
|
-
|
|
47977
|
+
cryptoJsExports as bF,
|
|
47978
|
+
isError as bG,
|
|
47979
|
+
CodyTaskState as bH,
|
|
47980
|
+
LRUCache$1 as bI,
|
|
47981
47981
|
RateLimitError as bJ,
|
|
47982
47982
|
upperFirst$2 as bK,
|
|
47983
47983
|
lodashExports as bL,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sourcegraph/cody-web",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.2",
|
|
4
4
|
"description": "Cody standalone web app",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"vite-bundle-analyzer": "^0.10.5",
|
|
36
36
|
"vite-plugin-svgr": "^4.2.0",
|
|
37
37
|
"vscode-uri": "^3.0.8",
|
|
38
|
-
"@sourcegraph/cody": "5.5.15",
|
|
39
38
|
"@sourcegraph/cody-shared": "0.0.10",
|
|
40
39
|
"@sourcegraph/prompt-editor": "0.0.1",
|
|
41
|
-
"cody-ai": "1.
|
|
40
|
+
"cody-ai": "1.72.0",
|
|
41
|
+
"@sourcegraph/cody": "5.5.15"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"dev": "vite --mode development",
|