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.
- package/cli/commands/plugins/kysely.js +1 -1
- package/package.json +1 -1
- package/sst.mjs +1 -1
|
@@ -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
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)
|