@wraps.dev/cli 2.17.8 → 2.17.11
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/dist/cli.js +4 -0
- package/dist/cli.js.map +1 -1
- package/dist/console/assets/{index-DYY5rtzO.css → index-DF7apuYC.css} +1 -1
- package/dist/console/index.html +2 -2
- package/dist/lambda/event-processor/.bundled +1 -1
- package/dist/lambda/event-processor/index.js +3 -1
- package/dist/lambda/event-processor/index.ts +10 -1
- package/dist/lambda/inbound-processor/.bundled +1 -1
- package/dist/lambda/inbound-processor/index.js +58 -56
- package/dist/lambda/inbound-processor/index.ts +11 -2
- package/dist/lambda/sms-event-processor/.bundled +1 -1
- package/dist/lambda/sms-event-processor/index.js +3 -1
- package/dist/lambda/sms-event-processor/index.ts +10 -1
- package/package.json +3 -3
- /package/dist/console/assets/{index-Wy-UKvho.js → index-CNn3fWLq.js} +0 -0
package/dist/cli.js
CHANGED
|
@@ -5263,6 +5263,10 @@ var init_output = __esm({
|
|
|
5263
5263
|
*/
|
|
5264
5264
|
start(message) {
|
|
5265
5265
|
if (this.silent) return;
|
|
5266
|
+
if (this.currentSpinner) {
|
|
5267
|
+
this.currentSpinner.stop("");
|
|
5268
|
+
this.currentSpinner = null;
|
|
5269
|
+
}
|
|
5266
5270
|
this.currentSpinner = clack8.spinner();
|
|
5267
5271
|
this.currentSpinner.start(message);
|
|
5268
5272
|
}
|