sst 2.0.0-rc.42 → 2.0.0-rc.43
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/sst.js +2 -0
- package/package.json +1 -1
- package/sst.mjs +1 -0
package/cli/sst.js
CHANGED
|
@@ -28,6 +28,8 @@ update(program);
|
|
|
28
28
|
updateMod(program);
|
|
29
29
|
consoleCommand(program);
|
|
30
30
|
diff(program);
|
|
31
|
+
// @ts-expect-error
|
|
32
|
+
process.setSourceMapsEnabled(true);
|
|
31
33
|
process.removeAllListeners("uncaughtException");
|
|
32
34
|
process.on("uncaughtException", (err) => {
|
|
33
35
|
Logger.debug(err);
|
package/package.json
CHANGED
package/sst.mjs
CHANGED
|
@@ -6770,6 +6770,7 @@ update(program);
|
|
|
6770
6770
|
updateMod(program);
|
|
6771
6771
|
consoleCommand(program);
|
|
6772
6772
|
diff2(program);
|
|
6773
|
+
process.setSourceMapsEnabled(true);
|
|
6773
6774
|
process.removeAllListeners("uncaughtException");
|
|
6774
6775
|
process.on("uncaughtException", (err) => {
|
|
6775
6776
|
Logger.debug(err);
|