propagate-cli 1.9.19 → 1.9.21
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/README.md +23 -23
- package/bin/action/help.js +23 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,51 +82,51 @@ If you would like to contribute or would simply like to have a look at the code,
|
|
|
82
82
|
Propagate has the following commands and options:
|
|
83
83
|
|
|
84
84
|
```
|
|
85
|
-
propagate [
|
|
86
|
-
|
|
87
|
-
propagate --version|-v Show the version
|
|
88
|
-
|
|
89
|
-
propagate Propagate the current package
|
|
85
|
+
propagate [<options>] Propagate the current package
|
|
90
86
|
|
|
91
|
-
propagate <sub-directory>
|
|
87
|
+
propagate [<options>] <sub-directory> Propagate a package in the given sub-directory
|
|
92
88
|
|
|
93
|
-
propagate <command>
|
|
89
|
+
propagate [<command>] [<options>]
|
|
94
90
|
|
|
95
91
|
Commands:
|
|
96
92
|
|
|
97
|
-
|
|
93
|
+
version Show the version
|
|
94
|
+
|
|
95
|
+
help Show this help
|
|
96
|
+
|
|
97
|
+
initialise Create a configuration file
|
|
98
98
|
|
|
99
|
-
add-directory
|
|
99
|
+
add-directory Add an additional directory
|
|
100
100
|
|
|
101
|
-
remove-directory
|
|
101
|
+
remove-directory Remove an additional directory
|
|
102
102
|
|
|
103
|
-
list-directories
|
|
103
|
+
list-directories List directories, including the default directory
|
|
104
104
|
|
|
105
|
-
set-shell-commands
|
|
105
|
+
set-shell-commands Set the Git, build, install and publish shell commands
|
|
106
106
|
|
|
107
|
-
add-ignored-dependency
|
|
107
|
+
add-ignored-dependency Add an ignored dependency
|
|
108
108
|
|
|
109
|
-
list-ignored-dependencies
|
|
109
|
+
list-ignored-dependencies List the ignored dependencies
|
|
110
110
|
|
|
111
|
-
remove-ignored-dependency
|
|
111
|
+
remove-ignored-dependency Remove an ignored dependency
|
|
112
112
|
|
|
113
|
-
add-forced-dependency-relation
|
|
113
|
+
add-forced-dependency-relation Add a forced dependency relation
|
|
114
114
|
|
|
115
|
-
list-forced-dependency-relations
|
|
115
|
+
list-forced-dependency-relations List the forced dependency relations
|
|
116
116
|
|
|
117
|
-
remove-forced-dependency-relation
|
|
117
|
+
remove-forced-dependency-relation Remove a forced dependency relation
|
|
118
118
|
|
|
119
119
|
Options:
|
|
120
120
|
|
|
121
|
-
--version|-v
|
|
121
|
+
--version|-v Show the version
|
|
122
122
|
|
|
123
|
-
--dry-run|-d
|
|
123
|
+
--dry-run|-d Show updates but do not apply them
|
|
124
124
|
|
|
125
|
-
--quietly|-q
|
|
125
|
+
--quietly|-q Execute shell commands without printing to the console
|
|
126
126
|
|
|
127
|
-
--yes|-y
|
|
127
|
+
--yes|-y Initially answer yes to prompts
|
|
128
128
|
|
|
129
|
-
--help|-h
|
|
129
|
+
--help|-h Show this help
|
|
130
130
|
```
|
|
131
131
|
|
|
132
132
|
In the directory that contains the sub-directories holding your project's packages and binaries, run the following command:
|
package/bin/action/help.js
CHANGED
|
@@ -3,51 +3,51 @@
|
|
|
3
3
|
function helpAction() {
|
|
4
4
|
console.log(`Usage:
|
|
5
5
|
|
|
6
|
-
propagate [
|
|
7
|
-
|
|
8
|
-
propagate --version|-v Show the version
|
|
9
|
-
|
|
10
|
-
propagate Propagate the current package
|
|
6
|
+
propagate [<options>] Propagate the current package
|
|
11
7
|
|
|
12
|
-
propagate <sub-directory>
|
|
8
|
+
propagate [<options>] <sub-directory> Propagate a package in the given sub-directory
|
|
13
9
|
|
|
14
|
-
propagate <command>
|
|
10
|
+
propagate [<command>] [<options>]
|
|
15
11
|
|
|
16
12
|
Commands:
|
|
17
13
|
|
|
18
|
-
|
|
14
|
+
version Show the version
|
|
15
|
+
|
|
16
|
+
help Show this help
|
|
17
|
+
|
|
18
|
+
initialise Create a configuration file
|
|
19
19
|
|
|
20
|
-
add-directory
|
|
20
|
+
add-directory Add an additional directory
|
|
21
21
|
|
|
22
|
-
remove-directory
|
|
22
|
+
remove-directory Remove an additional directory
|
|
23
23
|
|
|
24
|
-
list-directories
|
|
24
|
+
list-directories List directories, including the default directory
|
|
25
25
|
|
|
26
|
-
set-shell-commands
|
|
26
|
+
set-shell-commands Set the Git, build, install and publish shell commands
|
|
27
27
|
|
|
28
|
-
add-ignored-dependency
|
|
28
|
+
add-ignored-dependency Add an ignored dependency
|
|
29
29
|
|
|
30
|
-
list-ignored-dependencies
|
|
30
|
+
list-ignored-dependencies List the ignored dependencies
|
|
31
31
|
|
|
32
|
-
remove-ignored-dependency
|
|
32
|
+
remove-ignored-dependency Remove an ignored dependency
|
|
33
33
|
|
|
34
|
-
add-forced-dependency-relation
|
|
34
|
+
add-forced-dependency-relation Add a forced dependency relation
|
|
35
35
|
|
|
36
|
-
list-forced-dependency-relations
|
|
36
|
+
list-forced-dependency-relations List the forced dependency relations
|
|
37
37
|
|
|
38
|
-
remove-forced-dependency-relation
|
|
38
|
+
remove-forced-dependency-relation Remove a forced dependency relation
|
|
39
39
|
|
|
40
40
|
Options:
|
|
41
41
|
|
|
42
|
-
--version|-v
|
|
42
|
+
--version|-v Show the version
|
|
43
43
|
|
|
44
|
-
--dry-run|-d
|
|
44
|
+
--dry-run|-d Show updates but do not apply them
|
|
45
45
|
|
|
46
|
-
--quietly|-q
|
|
46
|
+
--quietly|-q Execute shell commands without printing to the console
|
|
47
47
|
|
|
48
|
-
--yes|-y
|
|
48
|
+
--yes|-y Initially answer yes to prompts
|
|
49
49
|
|
|
50
|
-
--help|-h
|
|
50
|
+
--help|-h Show this help
|
|
51
51
|
|
|
52
52
|
Further information:
|
|
53
53
|
|
package/package.json
CHANGED