lsh-framework 2.0.1 → 2.0.2
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.
|
@@ -624,7 +624,7 @@ LSH_SECRETS_KEY=${this.encryptionKey}
|
|
|
624
624
|
if (autoExecute) {
|
|
625
625
|
await this.createEnvFromExample(envFilePath);
|
|
626
626
|
out(' Pushing to cloud...');
|
|
627
|
-
await this.push(envFilePath,
|
|
627
|
+
await this.push(envFilePath, environment, force); // Use raw environment, not effectiveEnv
|
|
628
628
|
out();
|
|
629
629
|
out('✅ Setup complete! Edit your .env and run sync again to update.');
|
|
630
630
|
}
|
|
@@ -643,7 +643,7 @@ LSH_SECRETS_KEY=${this.encryptionKey}
|
|
|
643
643
|
out('⬆️ Local .env exists but not in cloud');
|
|
644
644
|
if (autoExecute) {
|
|
645
645
|
out(' Pushing to cloud...');
|
|
646
|
-
await this.push(envFilePath,
|
|
646
|
+
await this.push(envFilePath, environment, force); // Use raw environment, not effectiveEnv
|
|
647
647
|
out('✅ Secrets pushed to cloud!');
|
|
648
648
|
}
|
|
649
649
|
else {
|
|
@@ -698,7 +698,7 @@ LSH_SECRETS_KEY=${this.encryptionKey}
|
|
|
698
698
|
out(` Cloud: ${status.cloudModified.toLocaleString()}`);
|
|
699
699
|
if (autoExecute) {
|
|
700
700
|
out(' Pushing to cloud...');
|
|
701
|
-
await this.push(envFilePath,
|
|
701
|
+
await this.push(envFilePath, environment, force); // Use raw environment, not effectiveEnv
|
|
702
702
|
out('✅ Secrets synced to cloud!');
|
|
703
703
|
}
|
|
704
704
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lsh-framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Simple, cross-platform encrypted secrets manager with automatic sync, IPFS audit logs, and multi-environment support. Just run lsh sync and start managing your secrets.",
|
|
5
5
|
"main": "dist/app.js",
|
|
6
6
|
"bin": {
|