sst 2.2.4 → 2.2.6
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 +2 -1
|
@@ -82,7 +82,7 @@ export const useKyselyTypeGenerator = Context.memo(async () => {
|
|
|
82
82
|
defaultDatabaseName: c.data.defaultDatabaseName,
|
|
83
83
|
secretArn: c.data.secretArn,
|
|
84
84
|
}));
|
|
85
|
-
databases.map((db) => generate(db).catch());
|
|
85
|
+
databases.map((db) => generate(db).catch(() => { }));
|
|
86
86
|
});
|
|
87
87
|
bus.subscribe("function.success", async (evt) => {
|
|
88
88
|
if (!evt.properties.body?.results)
|
package/package.json
CHANGED
package/sst.mjs
CHANGED
|
@@ -6439,7 +6439,8 @@ var init_kysely = __esm({
|
|
|
6439
6439
|
defaultDatabaseName: c.data.defaultDatabaseName,
|
|
6440
6440
|
secretArn: c.data.secretArn
|
|
6441
6441
|
}));
|
|
6442
|
-
databases.map((db) => generate2(db).catch()
|
|
6442
|
+
databases.map((db) => generate2(db).catch(() => {
|
|
6443
|
+
}));
|
|
6443
6444
|
});
|
|
6444
6445
|
bus.subscribe("function.success", async (evt) => {
|
|
6445
6446
|
if (!evt.properties.body?.results)
|