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 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 [help] Show this help
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> Propagate a package in the given 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
- initialise Create a configuration file
93
+ version Show the version
94
+
95
+ help Show this help
96
+
97
+ initialise Create a configuration file
98
98
 
99
- add-directory Add an additional directory
99
+ add-directory Add an additional directory
100
100
 
101
- remove-directory Remove an additional directory
101
+ remove-directory Remove an additional directory
102
102
 
103
- list-directories List directories, including the default directory
103
+ list-directories List directories, including the default directory
104
104
 
105
- set-shell-commands Set the Git, install, build and publish shell commands
105
+ set-shell-commands Set the Git, build, install and publish shell commands
106
106
 
107
- add-ignored-dependency Add an ignored dependency
107
+ add-ignored-dependency Add an ignored dependency
108
108
 
109
- list-ignored-dependencies List the ignored dependencies
109
+ list-ignored-dependencies List the ignored dependencies
110
110
 
111
- remove-ignored-dependency Remove an ignored dependency
111
+ remove-ignored-dependency Remove an ignored dependency
112
112
 
113
- add-forced-dependency-relation Add a forced dependency relation
113
+ add-forced-dependency-relation Add a forced dependency relation
114
114
 
115
- list-forced-dependency-relations List the forced dependency relations
115
+ list-forced-dependency-relations List the forced dependency relations
116
116
 
117
- remove-forced-dependency-relation Remove a forced dependency relation
117
+ remove-forced-dependency-relation Remove a forced dependency relation
118
118
 
119
119
  Options:
120
120
 
121
- --version|-v Show the version
121
+ --version|-v Show the version
122
122
 
123
- --dry-run|-d Show updates but do not apply them
123
+ --dry-run|-d Show updates but do not apply them
124
124
 
125
- --quietly|-q Execute shell commands without printing to the console
125
+ --quietly|-q Execute shell commands without printing to the console
126
126
 
127
- --yes|-y Initially answer yes to prompts
127
+ --yes|-y Initially answer yes to prompts
128
128
 
129
- --help|-h Show this help
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:
@@ -3,51 +3,51 @@
3
3
  function helpAction() {
4
4
  console.log(`Usage:
5
5
 
6
- propagate [help] Show this help
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> Propagate a package in the given 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
- initialise Create a configuration file
14
+ version Show the version
15
+
16
+ help Show this help
17
+
18
+ initialise Create a configuration file
19
19
 
20
- add-directory Add an additional directory
20
+ add-directory Add an additional directory
21
21
 
22
- remove-directory Remove an additional directory
22
+ remove-directory Remove an additional directory
23
23
 
24
- list-directories List directories, including the default directory
24
+ list-directories List directories, including the default directory
25
25
 
26
- set-shell-commands Set the Git, build, install and publish shell commands
26
+ set-shell-commands Set the Git, build, install and publish shell commands
27
27
 
28
- add-ignored-dependency Add an ignored dependency
28
+ add-ignored-dependency Add an ignored dependency
29
29
 
30
- list-ignored-dependencies List the ignored dependencies
30
+ list-ignored-dependencies List the ignored dependencies
31
31
 
32
- remove-ignored-dependency Remove an ignored dependency
32
+ remove-ignored-dependency Remove an ignored dependency
33
33
 
34
- add-forced-dependency-relation Add a forced dependency relation
34
+ add-forced-dependency-relation Add a forced dependency relation
35
35
 
36
- list-forced-dependency-relations List the forced dependency relations
36
+ list-forced-dependency-relations List the forced dependency relations
37
37
 
38
- remove-forced-dependency-relation Remove a forced dependency relation
38
+ remove-forced-dependency-relation Remove a forced dependency relation
39
39
 
40
40
  Options:
41
41
 
42
- --version|-v Show the version
42
+ --version|-v Show the version
43
43
 
44
- --dry-run|-d Show updates but do not apply them
44
+ --dry-run|-d Show updates but do not apply them
45
45
 
46
- --quietly|-q Execute shell commands without printing to the console
46
+ --quietly|-q Execute shell commands without printing to the console
47
47
 
48
- --yes|-y Initially answer yes to prompts
48
+ --yes|-y Initially answer yes to prompts
49
49
 
50
- --help|-h Show this help
50
+ --help|-h Show this help
51
51
 
52
52
  Further information:
53
53
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "propagate-cli",
3
3
  "author": "James Smith",
4
- "version": "1.9.19",
4
+ "version": "1.9.21",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/propagate-cli",
7
7
  "description": "Propagate updated packages throughout a project.",