@skaile/provider-vercel-sandbox 0.0.0 → 0.1.0-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @skaile/provider-vercel-sandbox
2
2
 
3
+ ## 0.1.0-beta.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#54](https://github.com/skaile-ai/workspaces/pull/54) [`7bdaf11`](https://github.com/skaile-ai/workspaces/commit/7bdaf115c251136288a94a7f880b3a0f52145be8) Thanks [@mortegro](https://github.com/mortegro)! - Initial release.
8
+
9
+ Five plugins for `@skaile/workspaces`' `pluginRegistry`, each exporting
10
+ `register(pluginRegistry)`:
11
+
12
+ - `@skaile/provider-fly` — Fly Machines deploy target (`tlsTermination: edge`,
13
+ `buildStrategy: remote`).
14
+ - `@skaile/provider-vercel-sandbox` — Vercel Sandbox deploy target
15
+ (`tlsTermination: edge`, `buildStrategy: remote`).
16
+ - `@skaile/provider-k8s` — Kubernetes deploy target, ClusterIP + port-forward
17
+ only in 0.1.0 (`tlsTermination: edge`, `buildStrategy: local`).
18
+ - `@skaile/connector-redis` — Redis connector (deps `ioredis`).
19
+ - `@skaile/connector-yjs` — Yjs CRDT connector (deps `yjs`).
20
+ </content>
21
+
3
22
  ## 0.1.0
4
23
 
5
24
  - Initial release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skaile/provider-vercel-sandbox",
3
- "version": "0.0.0",
3
+ "version": "0.1.0-beta.0",
4
4
  "description": "Vercel Sandbox deploy target for @skaile/workspaces",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "devDependencies": {
34
- "@skaile/workspaces": "0.21.0"
34
+ "@skaile/workspaces": "^0.22.0-beta.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsup",