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.
Files changed (3) hide show
  1. package/cli/sst.js +2 -0
  2. package/package.json +1 -1
  3. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.0-rc.42",
3
+ "version": "2.0.0-rc.43",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
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);