sst 2.0.0-rc.0 → 2.0.0-rc.1

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.
@@ -11,7 +11,7 @@ export const update = (program) => program.command("update [ver]", "Update SST a
11
11
  const { useProject } = await import("../../app.js");
12
12
  const project = useProject();
13
13
  const files = await find(project.paths.root);
14
- const metadata = await fetch(`https://registry.npmjs.org/sst/${args.ver || "latest"}`).then((resp) => resp.json());
14
+ const metadata = await fetch(`https://registry.npmjs.org/sst/${args.ver || "rc"}`).then((resp) => resp.json());
15
15
  const results = new Map();
16
16
  const tasks = files.map(async (file) => {
17
17
  const data = await fs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.0-rc.0",
3
+ "version": "2.0.0-rc.1",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
package/sst.mjs CHANGED
@@ -20903,7 +20903,7 @@ var update = (program2) => program2.command(
20903
20903
  const project = useProject2();
20904
20904
  const files = await find2(project.paths.root);
20905
20905
  const metadata2 = await fetch(
20906
- `https://registry.npmjs.org/sst/${args.ver || "latest"}`
20906
+ `https://registry.npmjs.org/sst/${args.ver || "rc"}`
20907
20907
  ).then((resp) => resp.json());
20908
20908
  const results = /* @__PURE__ */ new Map();
20909
20909
  const tasks = files.map(async (file) => {