sst 2.8.25 → 2.8.26

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.
@@ -54,7 +54,12 @@ export const update = (program) => program.command("update [version]", "Update y
54
54
  continue;
55
55
  const desired = (() => {
56
56
  // Both sst and astro-sst should be sharing the same version
57
- if (["sst", "astro-sst"].includes(pkg))
57
+ if ([
58
+ "sst",
59
+ "astro-sst",
60
+ "svelte-kit-sst",
61
+ "solid-start-sst",
62
+ ].includes(pkg))
58
63
  return metadata.version;
59
64
  if (pkg === "constructs")
60
65
  return metadata.dependencies.constructs;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.8.25",
4
+ "version": "2.8.26",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/sst.mjs CHANGED
@@ -47629,7 +47629,12 @@ var update = (program2) => program2.command(
47629
47629
  if (!PACKAGE_MATCH.some((x) => pkg.startsWith(x)))
47630
47630
  continue;
47631
47631
  const desired = (() => {
47632
- if (["sst", "astro-sst"].includes(pkg))
47632
+ if ([
47633
+ "sst",
47634
+ "astro-sst",
47635
+ "svelte-kit-sst",
47636
+ "solid-start-sst"
47637
+ ].includes(pkg))
47633
47638
  return metadata3.version;
47634
47639
  if (pkg === "constructs")
47635
47640
  return metadata3.dependencies.constructs;