sliccy 2.24.0 → 2.25.0
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/ui/assets/{anthropic-5EX06qre.js → anthropic-uqpk3xep.js} +1 -1
- package/dist/ui/assets/{azure-openai-responses-B7etwOzk.js → azure-openai-responses-DObKC3TC.js} +1 -1
- package/dist/ui/assets/{es-CUZJ3cwV.js → es-Dxo-kC48.js} +1 -1
- package/dist/ui/assets/{google-eMKt6D5q.js → google-BKiA0lLc.js} +1 -1
- package/dist/ui/assets/index-BkVX8aZZ.js +7611 -0
- package/dist/ui/assets/{mistral-B1K_Jm8q.js → mistral-0S1AV6TM.js} +1 -1
- package/dist/ui/assets/{onboarding-orchestrator-C2Vl3mDg.js → onboarding-orchestrator-DxS074TN.js} +1 -1
- package/dist/ui/assets/{openai-codex-responses-Bax3P3Se.js → openai-codex-responses-CMIW7xPA.js} +1 -1
- package/dist/ui/assets/{openai-completions-MdSXoOj2.js → openai-completions-DYtRP720.js} +1 -1
- package/dist/ui/assets/{openai-responses-Cx3_UA9r.js → openai-responses-CDtTAP6W.js} +1 -1
- package/dist/ui/assets/{provider-settings-DdDjJ0n3.js → provider-settings-B-vR1wjk.js} +3 -3
- package/dist/ui/index.html +4 -4
- package/dist/ui/packages/webapp/index.html +4 -4
- package/package.json +2 -2
- package/dist/ui/assets/index-hy37TrIH.js +0 -7599
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>slicc</title>
|
|
7
7
|
<link rel="icon" type="image/png" href="/logos/sliccy-color-1scoops-32x32.png" />
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BkVX8aZZ.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/chunk-jRWAZmH_.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/preload-helper-ca-nBW7U.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/logger-GnnuzSDq.js">
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
<link rel="modulepreload" crossorigin href="/assets/magick-wasm-DpuDwl7G.js">
|
|
22
22
|
<link rel="modulepreload" crossorigin href="/assets/skills-D15e98qd.js">
|
|
23
23
|
<link rel="modulepreload" crossorigin href="/assets/__vite-browser-external-BD_HvDfc.js">
|
|
24
|
-
<link rel="modulepreload" crossorigin href="/assets/index-
|
|
24
|
+
<link rel="modulepreload" crossorigin href="/assets/index-BkVX8aZZ.js">
|
|
25
25
|
<link rel="modulepreload" crossorigin href="/assets/headers-qDMOQQGF.js">
|
|
26
|
-
<link rel="modulepreload" crossorigin href="/assets/openai-codex-responses-
|
|
26
|
+
<link rel="modulepreload" crossorigin href="/assets/openai-codex-responses-CMIW7xPA.js">
|
|
27
27
|
<link rel="modulepreload" crossorigin href="/assets/openai-D4NSaQIs.js">
|
|
28
|
-
<link rel="modulepreload" crossorigin href="/assets/provider-settings-
|
|
28
|
+
<link rel="modulepreload" crossorigin href="/assets/provider-settings-B-vR1wjk.js">
|
|
29
29
|
<link rel="stylesheet" crossorigin href="/assets/index-Bue9YB3a.css">
|
|
30
30
|
</head>
|
|
31
31
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sliccy",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.0",
|
|
4
4
|
"description": "Browser-based coding agent with thin CLI server",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"lint": "prettier --write . && eslint . --fix",
|
|
46
46
|
"package:release": "node dist/node-server/release-package.js",
|
|
47
47
|
"publish:chrome": "node dist/node-server/publish-chrome-web-store.js",
|
|
48
|
-
"publish:worker": "echo \"$CLOUDFLARE_TURN_API_TOKEN\" | npx wrangler secret put CLOUDFLARE_TURN_API_TOKEN --config packages/cloudflare-worker/wrangler.jsonc && npx wrangler deploy --config packages/cloudflare-worker/wrangler.jsonc && MAX_ATTEMPTS=6; for attempt in $(seq 1 \"$MAX_ATTEMPTS\"); do if npx vitest run --project cloudflare-worker packages/cloudflare-worker/tests/deployed.test.ts; then exit 0; fi; if [ \"$attempt\" -eq \"$MAX_ATTEMPTS\" ]; then echo \"Deployed smoke test failed after $MAX_ATTEMPTS attempts\"; exit 1; fi; echo \"Deployed smoke test failed on attempt $attempt; waiting for edge propagation before retrying...\"; sleep 15; done",
|
|
48
|
+
"publish:worker": "echo \"$CLOUDFLARE_TURN_API_TOKEN\" | npx wrangler secret put CLOUDFLARE_TURN_API_TOKEN --config packages/cloudflare-worker/wrangler.jsonc && echo \"$GITHUB_CLIENT_SECRET\" | npx wrangler secret put GITHUB_CLIENT_SECRET --config packages/cloudflare-worker/wrangler.jsonc && npx wrangler deploy --config packages/cloudflare-worker/wrangler.jsonc && MAX_ATTEMPTS=6; for attempt in $(seq 1 \"$MAX_ATTEMPTS\"); do if npx vitest run --project cloudflare-worker packages/cloudflare-worker/tests/deployed.test.ts; then exit 0; fi; if [ \"$attempt\" -eq \"$MAX_ATTEMPTS\" ]; then echo \"Deployed smoke test failed after $MAX_ATTEMPTS attempts\"; exit 1; fi; echo \"Deployed smoke test failed on attempt $attempt; waiting for edge propagation before retrying...\"; sleep 15; done",
|
|
49
49
|
"prepare": "husky"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|