sst 2.28.6 → 2.29.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/cli/sst.js +2 -2
  2. package/package.json +2 -2
package/cli/sst.js CHANGED
@@ -68,7 +68,7 @@ process.on("uncaughtException", (err) => {
68
68
  });
69
69
  // Check Node version
70
70
  const nodeVersion = process.versions.node;
71
- if (Number(nodeVersion.split(".")[0]) < 16) {
72
- throw new VisibleError(`Node.js version ${nodeVersion} is not supported by SST. Please upgrade to Node.js 16 or later.`);
71
+ if (Number(nodeVersion.split(".")[0]) < 18) {
72
+ throw new VisibleError(`Node.js version ${nodeVersion} is not supported by SST. Please upgrade to Node.js 18 or later.`);
73
73
  }
74
74
  program.parse();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.28.6",
4
+ "version": "2.29.0",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
@@ -119,7 +119,7 @@
119
119
  "@types/ws": "^8.5.3",
120
120
  "@types/yargs": "^17.0.13",
121
121
  "archiver": "^5.3.1",
122
- "astro-sst": "2.28.6",
122
+ "astro-sst": "2.29.0",
123
123
  "tsx": "^3.12.1",
124
124
  "typescript": "^5.2.2",
125
125
  "vitest": "^0.33.0"