You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: module/move/willbe/src/command/mod.rs
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,16 @@ mod private
25
25
.kind(Type::String)
26
26
.optional(true)
27
27
.end()
28
+
.property("exclude_dev_dependencies")
29
+
.hint("Setting this option to true will temporarily remove development dependencies before executing the command, then restore them afterward. Default is `true`.")
30
+
.kind(Type::Bool)
31
+
.optional(true)
32
+
.end()
33
+
.property("commit_changes")
34
+
.hint("Indicates whether changes should be committed. Default is `false`.")
35
+
.kind(Type::Bool)
36
+
.optional(true)
37
+
.end()
28
38
.property("dry")
29
39
.hint("Enables 'dry run'. Does not publish, only simulates. Default is `true`.")
30
40
.kind(Type::Bool)
@@ -47,6 +57,11 @@ mod private
47
57
.kind(Type::Path)
48
58
.optional(true)
49
59
.end()
60
+
.property("exclude_dev_dependencies")
61
+
.hint("Setting this option to true will temporarily remove development dependencies before executing the command, then restore them afterward. Default is `true`.")
62
+
.kind(Type::Bool)
63
+
.optional(true)
64
+
.end()
50
65
.property("keep_archive")
51
66
.hint("Save remote package version to the specified path")
0 commit comments