eitri-cli 1.17.0-beta.8 → 1.17.0-beta.9
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 +1 -0
- package/index.js +2 -10
- 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
|
+
"-i, --initializationParams <initializationParams>",
|
|
81
|
+
"Define os parâmetros de inicialização do Eitri-App"
|
|
82
82
|
)
|
|
83
83
|
.option(
|
|
84
84
|
"-e, --emulator <platform>",
|
|
@@ -94,14 +94,6 @@ 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
|
-
|
|
105
97
|
program
|
|
106
98
|
.command("push-version")
|
|
107
99
|
.description(
|