@portel/photon 1.25.0 → 1.26.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/README.md +1 -1
- package/dist/beam-form.bundle.js +11 -1
- package/dist/beam-form.bundle.js.map +2 -2
- package/dist/beam.bundle.js +80 -55
- package/dist/beam.bundle.js.map +4 -4
- package/dist/cli/commands/host.d.ts.map +1 -1
- package/dist/cli/commands/host.js +2 -0
- package/dist/cli/commands/host.js.map +1 -1
- package/dist/cli/commands/ps.d.ts.map +1 -1
- package/dist/cli/commands/ps.js +15 -0
- package/dist/cli/commands/ps.js.map +1 -1
- package/dist/daemon/client.d.ts +6 -0
- package/dist/daemon/client.d.ts.map +1 -1
- package/dist/daemon/client.js.map +1 -1
- package/dist/daemon/server.js +57 -1
- package/dist/daemon/server.js.map +1 -1
- package/dist/deploy/cloudflare.d.ts +7 -0
- package/dist/deploy/cloudflare.d.ts.map +1 -1
- package/dist/deploy/cloudflare.js +337 -37
- package/dist/deploy/cloudflare.js.map +1 -1
- package/dist/loader.d.ts +5 -0
- package/dist/loader.d.ts.map +1 -1
- package/dist/loader.js +38 -5
- package/dist/loader.js.map +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +40 -0
- package/dist/server.js.map +1 -1
- package/dist/types/server-types.d.ts +6 -0
- package/dist/types/server-types.d.ts.map +1 -1
- package/package.json +1 -1
- package/templates/cloudflare/worker.ts.template +927 -134
- package/templates/cloudflare/wrangler.toml.template +21 -0
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ npx @portel/photon mcp install my-tool
|
|
|
95
95
|
<div align="center">
|
|
96
96
|
|
|
97
97
|
<a href="https://www.youtube.com/watch?v=FI0M8s6ZKv4">
|
|
98
|
-
<img src="https://
|
|
98
|
+
<img src="https://img.youtube.com/vi/FI0M8s6ZKv4/maxresdefault.jpg" alt="Watch: Why Photon? (2 min)" width="100%">
|
|
99
99
|
</a>
|
|
100
100
|
|
|
101
101
|
</div>
|
package/dist/beam-form.bundle.js
CHANGED
|
@@ -1833,7 +1833,17 @@ function formatLabel(name) {
|
|
|
1833
1833
|
"SQL",
|
|
1834
1834
|
"MCP",
|
|
1835
1835
|
"SSH",
|
|
1836
|
-
"CLI"
|
|
1836
|
+
"CLI",
|
|
1837
|
+
"MD",
|
|
1838
|
+
"PR",
|
|
1839
|
+
"CI",
|
|
1840
|
+
"CD",
|
|
1841
|
+
"ENV",
|
|
1842
|
+
"SDK",
|
|
1843
|
+
"OS",
|
|
1844
|
+
"DB",
|
|
1845
|
+
"IO",
|
|
1846
|
+
"GIT"
|
|
1837
1847
|
].includes(upper)) {
|
|
1838
1848
|
if (upper === "IDS") return "IDs";
|
|
1839
1849
|
return upper;
|