sst 2.1.15 → 2.1.16

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.1.15",
3
+ "version": "2.1.16",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
@@ -66,7 +66,7 @@ export const useGoHandler = Context.memo(async () => {
66
66
  });
67
67
  }
68
68
  catch (ex) {
69
- throw new VisibleError("Failed to build");
69
+ throw new VisibleError(`Failed to build ${ex}`);
70
70
  }
71
71
  }
72
72
  if (input.mode === "deploy") {
package/sst.mjs CHANGED
@@ -5171,7 +5171,7 @@ var init_go = __esm({
5171
5171
  }
5172
5172
  );
5173
5173
  } catch (ex) {
5174
- throw new VisibleError("Failed to build");
5174
+ throw new VisibleError(`Failed to build ${ex}`);
5175
5175
  }
5176
5176
  }
5177
5177
  if (input.mode === "deploy") {