eitri-cli 1.17.0-beta.9 → 1.17.0
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/eitri-cli-v2/eitri-cli-v2.darwin-arm64.node +0 -0
- package/eitri-cli-v2/eitri-cli-v2.darwin-x64.node +0 -0
- package/eitri-cli-v2/eitri-cli-v2.linux-x64-gnu.node +0 -0
- package/eitri-cli-v2/eitri-cli-v2.win32-x64-msvc.node +0 -0
- package/eitri-cli-v2/index.d.ts +0 -1
- package/index.js +10 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/eitri-cli-v2/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ const run = async () => {
|
|
|
77
77
|
"Gera um QR code com a URL de abertura do Eitri Playground"
|
|
78
78
|
)
|
|
79
79
|
.option(
|
|
80
|
-
"-
|
|
81
|
-
"
|
|
80
|
+
"-P, --qr-printer <qrPrinter>",
|
|
81
|
+
"Indica qual programa imprimirá o QR Code. Se omitido, exibe o QrCode no terminal. Valores válidos: terminal|chrome|msedge|firefox"
|
|
82
82
|
)
|
|
83
83
|
.option(
|
|
84
84
|
"-e, --emulator <platform>",
|
|
@@ -94,6 +94,14 @@ const run = async () => {
|
|
|
94
94
|
require("./src/cmd/start")(cmdObj);
|
|
95
95
|
});
|
|
96
96
|
|
|
97
|
+
program
|
|
98
|
+
.command('test-initialization-params <initializationParams>')
|
|
99
|
+
.option("-v, --verbose", "Exibe mais logs")
|
|
100
|
+
.description('Define parâmetros na query string para inicializar o Eitri-App. Exemplo: stringChave1=stringValor1&stringChave2=stringValor2...')
|
|
101
|
+
.action((initializationParams, cmdObj) => {
|
|
102
|
+
require('./src/cmd/test-initialization-params')(initializationParams, cmdObj)
|
|
103
|
+
})
|
|
104
|
+
|
|
97
105
|
program
|
|
98
106
|
.command("push-version")
|
|
99
107
|
.description(
|