sst 2.0.0-rc.13 → 2.0.0-rc.14

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.
@@ -51,7 +51,7 @@ export class NextjsSite extends SsrSite {
51
51
  // https://github.com/aws/aws-cdk/issues/9251
52
52
  // We will zip the folder ourselves.
53
53
  const zipOutDir = path.resolve(path.join(this.sstBuildDir, `Site-${this.node.id}-${this.node.addr}`));
54
- const script = path.resolve(__dirname, "../support/ssr-site-function-archiver.cjs");
54
+ const script = path.resolve(__dirname, "../support/ssr-site-function-archiver.mjs");
55
55
  const result = spawn.sync("node", [
56
56
  script,
57
57
  path.join(this.props.path, ".open-next", "server-function"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.0-rc.13",
3
+ "version": "2.0.0-rc.14",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },