@arkstack/console 0.14.14 → 0.14.16
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/index.js +1 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -95,12 +95,11 @@ var KeyGenerateCommand = class KeyGenerateCommand extends Command {
|
|
|
95
95
|
signature = `key:generate
|
|
96
96
|
{--show : Display the generated key instead of writing it to the .env file.}
|
|
97
97
|
{--force : Overwrite the existing APP_KEY without confirmation.}
|
|
98
|
-
{--ignore : Ignore existing APP_KEY without confirmation.}
|
|
99
98
|
`;
|
|
100
99
|
description = "Set the application key (APP_KEY).";
|
|
101
100
|
async handle() {
|
|
102
101
|
const key = this.generateKey();
|
|
103
|
-
const ignore = this.option("
|
|
102
|
+
const ignore = !this.option("interaction");
|
|
104
103
|
if (this.option("show")) {
|
|
105
104
|
this.line(key);
|
|
106
105
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Console module for Arkstack, providing the command-line runtime and console integration layer.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net/guide/cli",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"chalk": "^5.6.2",
|
|
52
52
|
"resora": "^1.3.26",
|
|
53
53
|
"ts-morph": "^28.0.0",
|
|
54
|
-
"@arkstack/common": "^0.14.
|
|
55
|
-
"@arkstack/contract": "^0.14.
|
|
54
|
+
"@arkstack/common": "^0.14.16",
|
|
55
|
+
"@arkstack/contract": "^0.14.16"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsdown",
|