@helipod/deploy 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @helipod/deploy
2
+
3
+ The deploy-target seam behind `helipod deploy --target`.
4
+
5
+ This package defines the common deploy contract and ships the built-in targets:
6
+ `serve` (live push to a running Helipod server), `cloudflare`, `docker`, `railway`,
7
+ `fly`, and `aws`. Each target knows how to package a project's functions and get them
8
+ onto its platform; the CLI resolves the requested target through this package's
9
+ registry and drives it with a shared spawner, so provider-specific logic stays out of
10
+ the engine and the CLI alike.
11
+
12
+ It also contains supporting machinery such as module hashing for delta pushes and
13
+ configuration reconciliation for targets that manage platform config files.
14
+
15
+ > This is an internal package of the Helipod engine. Most applications should install
16
+ > [`helipod`](https://www.npmjs.com/package/helipod) instead.
17
+
18
+ Part of [Helipod](https://github.com/helipod-sh/helipod) — docs at https://helipod-six.vercel.app/docs
19
+
20
+ License: FSL-1.1-Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helipod/deploy",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -18,7 +18,7 @@
18
18
  "clean": "rm -rf dist .turbo"
19
19
  },
20
20
  "dependencies": {
21
- "@helipod/component": "0.1.0"
21
+ "@helipod/component": "0.1.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^22.10.5",