sst 2.0.0-rc.46 → 2.0.0-rc.47
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/commands/dev.js +1 -0
- package/package.json +1 -1
- package/sst.mjs +2 -3
package/cli/commands/dev.js
CHANGED
|
@@ -61,6 +61,7 @@ export const dev = (program) => program.command(["dev", "start"], "Work on your
|
|
|
61
61
|
Colors.line(prefix(evt.properties.requestID), Colors.dim.bold("Invoked"), Colors.dim(useFunctions().fromID(evt.properties.functionID).handler));
|
|
62
62
|
});
|
|
63
63
|
bus.subscribe("worker.stdout", async (evt) => {
|
|
64
|
+
prefix(evt.properties.requestID);
|
|
64
65
|
const { started } = pending.get(evt.properties.requestID);
|
|
65
66
|
for (let line of evt.properties.message.split("\n")) {
|
|
66
67
|
Colors.line(prefix(evt.properties.requestID), Colors.dim(("+" + (Date.now() - started) + "ms").padEnd(7)), Colors.dim(line));
|
package/package.json
CHANGED
package/sst.mjs
CHANGED
|
@@ -6040,6 +6040,7 @@ var dev = (program2) => program2.command(
|
|
|
6040
6040
|
);
|
|
6041
6041
|
});
|
|
6042
6042
|
bus.subscribe("worker.stdout", async (evt) => {
|
|
6043
|
+
prefix(evt.properties.requestID);
|
|
6043
6044
|
const { started } = pending.get(evt.properties.requestID);
|
|
6044
6045
|
for (let line of evt.properties.message.split("\n")) {
|
|
6045
6046
|
Colors.line(
|
|
@@ -6157,9 +6158,7 @@ var dev = (program2) => program2.command(
|
|
|
6157
6158
|
pending = void 0;
|
|
6158
6159
|
if (lastDeployed)
|
|
6159
6160
|
console.log();
|
|
6160
|
-
const component = render(
|
|
6161
|
-
/* @__PURE__ */ React2.createElement(DeploymentUI2, { assembly })
|
|
6162
|
-
);
|
|
6161
|
+
const component = render(/* @__PURE__ */ React2.createElement(DeploymentUI2, { assembly }));
|
|
6163
6162
|
const results = await Stacks.deployMany(assembly.stacks);
|
|
6164
6163
|
component.clear();
|
|
6165
6164
|
component.unmount();
|