@keywaysh/cli 0.0.16 → 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.
- package/dist/cli.js +4 -4
- 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.
|
|
72
|
+
version: "0.0.17",
|
|
73
73
|
description: "One link to all your secrets",
|
|
74
74
|
type: "module",
|
|
75
75
|
bin: {
|
|
@@ -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
1996
|
const text = pc9.bold(pc9.cyan("Keyway CLI"));
|
|
1996
|
-
const subtitle = pc9.gray("GitHub-native secrets manager for dev teams");
|
|
1997
1997
|
console.log(`
|
|
1998
1998
|
${text}
|
|
1999
|
-
${
|
|
1999
|
+
${pc9.gray(TAGLINE)}
|
|
2000
2000
|
`);
|
|
2001
2001
|
};
|
|
2002
2002
|
showBanner();
|
|
2003
|
-
program.name("keyway").description(
|
|
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
|
});
|