sst 2.0.38 → 2.0.39

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.
@@ -85,7 +85,7 @@ export const useKyselyTypeGenerator = Context.memo(async () => {
85
85
  defaultDatabaseName: c.data.defaultDatabaseName,
86
86
  secretArn: c.data.secretArn,
87
87
  }));
88
- databases.map((db) => generate(db));
88
+ databases.map((db) => generate(db).catch());
89
89
  });
90
90
  bus.subscribe("function.success", async (evt) => {
91
91
  if (!evt.properties.body?.results)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.38",
3
+ "version": "2.0.39",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
package/sst.mjs CHANGED
@@ -6319,7 +6319,7 @@ var init_kysely = __esm({
6319
6319
  defaultDatabaseName: c.data.defaultDatabaseName,
6320
6320
  secretArn: c.data.secretArn
6321
6321
  }));
6322
- databases.map((db) => generate2(db));
6322
+ databases.map((db) => generate2(db).catch());
6323
6323
  });
6324
6324
  bus.subscribe("function.success", async (evt) => {
6325
6325
  if (!evt.properties.body?.results)