sst 2.0.24 → 2.0.25

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/credentials.js CHANGED
@@ -24,8 +24,10 @@ export const useAWSCredentialsProvider = Context.memo(() => {
24
24
  resolve(input.trim());
25
25
  rl.close();
26
26
  }
27
- // prompt again if no input
28
- prompt();
27
+ else {
28
+ // prompt again if no input
29
+ prompt();
30
+ }
29
31
  });
30
32
  prompt();
31
33
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.24",
3
+ "version": "2.0.25",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
@@ -104,6 +104,7 @@ export const useNodeHandler = Context.memo(async () => {
104
104
  ...(nodejs.install || []),
105
105
  ...(external || []),
106
106
  ],
107
+ loader: nodejs.loader,
107
108
  keepNames: true,
108
109
  bundle: true,
109
110
  logLevel: "silent",
package/sst.mjs CHANGED
@@ -1554,8 +1554,9 @@ var init_credentials = __esm({
1554
1554
  if (input.trim() !== "") {
1555
1555
  resolve(input.trim());
1556
1556
  rl.close();
1557
+ } else {
1558
+ prompt();
1557
1559
  }
1558
- prompt();
1559
1560
  });
1560
1561
  prompt();
1561
1562
  });
@@ -4848,6 +4849,7 @@ var init_node = __esm({
4848
4849
  ...nodejs.install || [],
4849
4850
  ...external || []
4850
4851
  ],
4852
+ loader: nodejs.loader,
4851
4853
  keepNames: true,
4852
4854
  bundle: true,
4853
4855
  logLevel: "silent",