sst 2.3.4 → 2.3.6
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/bind.js +1 -1
- package/cli/commands/dev.js +2 -1
- package/cli/commands/secrets/set.js +1 -1
- package/package.json +1 -1
- package/sst.mjs +4 -3
package/cli/commands/bind.js
CHANGED
package/cli/commands/dev.js
CHANGED
|
@@ -193,7 +193,8 @@ export const dev = (program) => program.command(["dev", "start"], "Work on your
|
|
|
193
193
|
const cdCmd = path.resolve(props.path) === process.cwd()
|
|
194
194
|
? ""
|
|
195
195
|
: `cd ${props.path} && `;
|
|
196
|
-
Colors.line(Colors.
|
|
196
|
+
Colors.line(Colors.primary(`➜ `), Colors.bold(`Start ${framework}:`), `${cdCmd}npm run dev`);
|
|
197
|
+
Colors.gap();
|
|
197
198
|
}
|
|
198
199
|
});
|
|
199
200
|
}
|
|
@@ -42,7 +42,7 @@ export const set = (program) => program.command("set <name> <value>", "Set the v
|
|
|
42
42
|
: `Reloaded ${functionCount} functions`);
|
|
43
43
|
}
|
|
44
44
|
edgeSites.forEach(({ id, type }) => {
|
|
45
|
-
Colors.line(Colors.
|
|
45
|
+
Colors.line(Colors.primary(`➜ `), `Redeploy the "${id}" ${type} to use the new secret`);
|
|
46
46
|
});
|
|
47
47
|
process.exit(0);
|
|
48
48
|
});
|
package/package.json
CHANGED
package/sst.mjs
CHANGED
|
@@ -6952,10 +6952,11 @@ var dev = (program2) => program2.command(
|
|
|
6952
6952
|
if (framework) {
|
|
6953
6953
|
const cdCmd = path20.resolve(props.path) === process.cwd() ? "" : `cd ${props.path} && `;
|
|
6954
6954
|
Colors2.line(
|
|
6955
|
-
Colors2.
|
|
6955
|
+
Colors2.primary(`\u279C `),
|
|
6956
6956
|
Colors2.bold(`Start ${framework}:`),
|
|
6957
6957
|
`${cdCmd}npm run dev`
|
|
6958
6958
|
);
|
|
6959
|
+
Colors2.gap();
|
|
6959
6960
|
}
|
|
6960
6961
|
});
|
|
6961
6962
|
}
|
|
@@ -7309,7 +7310,7 @@ var bind = (program2) => program2.command(
|
|
|
7309
7310
|
shell: true
|
|
7310
7311
|
});
|
|
7311
7312
|
p.on("exit", (code) => {
|
|
7312
|
-
process.exit();
|
|
7313
|
+
process.exit(code || 0);
|
|
7313
7314
|
});
|
|
7314
7315
|
}
|
|
7315
7316
|
function areEnvsSame(envs1, envs2) {
|
|
@@ -7696,7 +7697,7 @@ var set = (program2) => program2.command(
|
|
|
7696
7697
|
}
|
|
7697
7698
|
edgeSites.forEach(({ id, type }) => {
|
|
7698
7699
|
Colors2.line(
|
|
7699
|
-
Colors2.
|
|
7700
|
+
Colors2.primary(`\u279C `),
|
|
7700
7701
|
`Redeploy the "${id}" ${type} to use the new secret`
|
|
7701
7702
|
);
|
|
7702
7703
|
});
|