eitri-cli 1.41.2 → 1.42.0-beta.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.
- package/eitri-cli-v2/Cargo.toml +1 -0
- 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 +5 -1
- package/package.json +1 -1
- package/src/modules/app/AppCommand.js +4 -3
package/eitri-cli-v2/Cargo.toml
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/eitri-cli-v2/index.d.ts
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
/* auto-generated by NAPI-RS */
|
|
5
5
|
|
|
6
|
+
export interface AppCleanArguments {
|
|
7
|
+
verbose?: boolean
|
|
8
|
+
full?: boolean
|
|
9
|
+
}
|
|
6
10
|
export interface CreateAppArguments {
|
|
7
11
|
applicationName: string
|
|
8
12
|
verbose?: boolean
|
|
@@ -64,7 +68,7 @@ export declare namespace app {
|
|
|
64
68
|
export function start(args: StartArguments): Promise<void>
|
|
65
69
|
export function create(args: CreateAppArguments): Promise<void>
|
|
66
70
|
export function appLogs(): Promise<void>
|
|
67
|
-
export function clean(): Promise<void>
|
|
71
|
+
export function clean(args: AppCleanArguments): Promise<void>
|
|
68
72
|
}
|
|
69
73
|
export declare namespace workspace {
|
|
70
74
|
export function clean(): Promise<void>
|
package/package.json
CHANGED
|
@@ -27,9 +27,10 @@ module.exports = function AppCommand() {
|
|
|
27
27
|
|
|
28
28
|
app
|
|
29
29
|
.command("clean")
|
|
30
|
-
.description("Realiza a limpeza do workspace remoto")
|
|
31
|
-
.
|
|
32
|
-
|
|
30
|
+
.description("Realiza a limpeza do workspace remoto e local do desenvolvedor")
|
|
31
|
+
.option("-v, --verbose", "Exibe mais logs")
|
|
32
|
+
.action(async (cmdObj) => {
|
|
33
|
+
await eitriCLIV2.app.clean(cmdObj);
|
|
33
34
|
});
|
|
34
35
|
|
|
35
36
|
app
|