@keywaysh/cli 0.0.15 → 0.0.17

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.
Files changed (2) hide show
  1. package/dist/cli.js +6 -6
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -69,7 +69,7 @@ var INTERNAL_POSTHOG_HOST = "https://eu.i.posthog.com";
69
69
  // package.json
70
70
  var package_default = {
71
71
  name: "@keywaysh/cli",
72
- version: "0.0.15",
72
+ version: "0.0.17",
73
73
  description: "One link to all your secrets",
74
74
  type: "module",
75
75
  bin: {
@@ -680,7 +680,7 @@ async function runLoginFlow() {
680
680
  if (!verifyUrl) {
681
681
  throw new Error("Missing verification URL from the auth server.");
682
682
  }
683
- console.log(`Code: ${pc.green.bold(start.userCode)}`);
683
+ console.log(`Code: ${pc.bold(pc.green(start.userCode))}`);
684
684
  console.log("Waiting for auth...");
685
685
  open(verifyUrl).catch(() => {
686
686
  console.log(pc.gray(`Open this URL in your browser: ${verifyUrl}`));
@@ -1991,16 +1991,16 @@ async function executeSyncOperation(accessToken, repoFullName, connectionId, pro
1991
1991
 
1992
1992
  // src/cli.ts
1993
1993
  var program = new Command();
1994
+ var TAGLINE = "Sync secrets with your team and infra";
1994
1995
  var showBanner = () => {
1995
- const text = pc9.cyan.bold("Keyway CLI");
1996
- const subtitle = pc9.gray("GitHub-native secrets manager for dev teams");
1996
+ const text = pc9.bold(pc9.cyan("Keyway CLI"));
1997
1997
  console.log(`
1998
1998
  ${text}
1999
- ${subtitle}
1999
+ ${pc9.gray(TAGLINE)}
2000
2000
  `);
2001
2001
  };
2002
2002
  showBanner();
2003
- program.name("keyway").description("GitHub-native secrets manager for dev teams").version(package_default.version);
2003
+ program.name("keyway").description(TAGLINE).version(package_default.version);
2004
2004
  program.command("init").description("Initialize a vault for the current repository").option("--no-login-prompt", "Fail instead of prompting to login if unauthenticated").action(async (options) => {
2005
2005
  await initCommand(options);
2006
2006
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keywaysh/cli",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "One link to all your secrets",
5
5
  "type": "module",
6
6
  "bin": {