@keywaysh/cli 0.3.8 → 0.3.10
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/README.md +1 -0
- package/package.json +3 -3
- package/scripts/install.js +1 -1
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@ No install required. This will authenticate with GitHub, create a vault, and syn
|
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
npx @keywaysh/cli pull # Pull secrets to .env
|
|
17
|
+
npx @keywaysh/cli run # Run command with secrets injected
|
|
17
18
|
npx @keywaysh/cli push # Push .env to vault
|
|
18
19
|
npx @keywaysh/cli sync # Sync with Vercel/Railway
|
|
19
20
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keywaysh/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "GitHub-native secrets management CLI",
|
|
5
5
|
"bin": {
|
|
6
6
|
"keyway": "./bin/keyway"
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/keywaysh/cli
|
|
13
|
+
"url": "git+https://github.com/keywaysh/cli.git"
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://keyway.sh",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/keywaysh/cli
|
|
17
|
+
"url": "https://github.com/keywaysh/cli/issues"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"secrets",
|
package/scripts/install.js
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -131,7 +131,7 @@ async function main() {
|
|
|
131
131
|
console.log("Development version detected, skipping binary download");
|
|
132
132
|
// Create a placeholder script
|
|
133
133
|
const placeholder = `#!/bin/sh
|
|
134
|
-
echo "Keyway CLI not installed. Run 'make build' in the cli
|
|
134
|
+
echo "Keyway CLI not installed. Run 'make build' in the cli directory."
|
|
135
135
|
exit 1
|
|
136
136
|
`;
|
|
137
137
|
fs.writeFileSync(path.join(BIN_DIR, "keyway"), placeholder);
|