learn-secrets-sdk 1.6.0 → 1.6.1
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.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
|
@@ -998,7 +998,7 @@ async function deployCommand() {
|
|
|
998
998
|
|
|
999
999
|
// src/cli/index.ts
|
|
1000
1000
|
var program = new Command();
|
|
1001
|
-
program.name("learn-secrets").description("CLI tool for managing API secrets in static sites").version("1.
|
|
1001
|
+
program.name("learn-secrets").description("CLI tool for managing API secrets in static sites").version("1.6.0");
|
|
1002
1002
|
program.command("setup").description("Complete setup: create project, generate token, upload secrets").requiredOption("-e, --email <email>", "Your Learn account email").requiredOption("-p, --password <password>", "Your Learn account password").requiredOption("-o, --origin <domain>", "Your site origin (e.g., mysite.com)").option("--project-name <name>", 'Project name (default: "Project - <origin>")').option("--env <file>", "Path to .env file (default: .env)", ".env").option("--base-url <url>", "Custom base URL for API").option("-y, --yes", "Skip confirmation prompt").action(async (options) => {
|
|
1003
1003
|
await setupCommand(options);
|
|
1004
1004
|
});
|