veracarto 0.1.3 → 0.1.4
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/index.js +3 -2
- package/dist/cli/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -42266,11 +42266,12 @@ function Onboarding({ forceStep, onDone }) {
|
|
|
42266
42266
|
value: inviteCode,
|
|
42267
42267
|
onChange: setInviteCode,
|
|
42268
42268
|
onSubmit: () => {
|
|
42269
|
+
if (!inviteCode.trim()) return;
|
|
42269
42270
|
setEditingInviteCode(false);
|
|
42270
42271
|
setEditingEmail(true);
|
|
42271
42272
|
}
|
|
42272
42273
|
}
|
|
42273
|
-
)), !editingInviteCode && inviteCode && /* @__PURE__ */ import_react24.default.createElement(Text, { color: "#
|
|
42274
|
+
)), !editingInviteCode && inviteCode && /* @__PURE__ */ import_react24.default.createElement(Text, { color: "#888888" }, "Invite code: ", inviteCode), editingEmail && !editingInviteCode && /* @__PURE__ */ import_react24.default.createElement(Box_default, null, /* @__PURE__ */ import_react24.default.createElement(Text, null, "Email: "), /* @__PURE__ */ import_react24.default.createElement(
|
|
42274
42275
|
build_default,
|
|
42275
42276
|
{
|
|
42276
42277
|
value: email,
|
|
@@ -45057,7 +45058,7 @@ var {
|
|
|
45057
45058
|
// src/cli/index.ts
|
|
45058
45059
|
init_config();
|
|
45059
45060
|
var program2 = new Command();
|
|
45060
|
-
program2.name("veracarto").description("Security findings, down to what matters").version("0.1.
|
|
45061
|
+
program2.name("veracarto").description("Security findings, down to what matters").version("0.1.4");
|
|
45061
45062
|
program2.command("init").description("Interactive onboarding wizard").option("--step <step>", "Jump to a specific step (gcp, github, slack)").action(async (opts) => {
|
|
45062
45063
|
const { runInit: runInit2 } = await init_init().then(() => init_exports);
|
|
45063
45064
|
await runInit2(opts.step);
|