sst 2.0.0-rc.52 → 2.0.0-rc.53

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.0-rc.52",
3
+ "version": "2.0.0-rc.53",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
package/sst.mjs CHANGED
@@ -1324,7 +1324,7 @@ function filterOutputs(input) {
1324
1324
  return pipe(
1325
1325
  input,
1326
1326
  omitBy((_, key) => {
1327
- return key.startsWith("Export") || key.includes("SstSiteEnv") || key === "SSTMetadata";
1327
+ return key.startsWith("Export") || key === "SSTMetadata";
1328
1328
  })
1329
1329
  );
1330
1330
  }
package/stacks/monitor.js CHANGED
@@ -132,8 +132,6 @@ export async function monitor(stack) {
132
132
  import { map, omitBy, pipe } from "remeda";
133
133
  export function filterOutputs(input) {
134
134
  return pipe(input, omitBy((_, key) => {
135
- return (key.startsWith("Export") ||
136
- key.includes("SstSiteEnv") ||
137
- key === "SSTMetadata");
135
+ return key.startsWith("Export") || key === "SSTMetadata";
138
136
  }));
139
137
  }