propagate-cli
v1.9.66
Published
Propagate updated packages throughout a project.
Downloads
176
Readme
Propagate-CLI
Propagate updated packages throughout a project.
Managing dependencies can be irksome if your project relies on more than a few frequently updated packages. Consider the following dependency graph. Here the solid lines represent dependencies, the dotted lines developer dependencies:
alice
^ ^
. |
........ |_______
. |
. |
bernard |
^ |
| |
_____|_____ chuck
| | ^
| | .
dylan erica .
^ .
| .
|_____ .....
| .
| .
freddie
If we fix a bug in the freddie
package and bump its patch number, we must update the package JSON files of both the erica
and chuck
packages in order to make sure that they both make use of the updated freddie
package. However, that is not the end of the task. We must also bump their package numbers and update the package JSON files of packages or binaries that depend on them, too. And so on, ad nauseam.
Propagate automates the process, allowing you to update the version
, dependencies
and devDependencies
fields of all the requisite package JSON files in a project whenever a package is updated, effectively propagating the original update through the dependency graph. It will also optionally save; build; add, commit and push with Git; and publish by way of configurable shell commands.
Here are the actual updates that Propagate would make:
'./freddie' ("freddie"):
"version": "^1.0.4" -> "^1.0.5"
'./erica' ("erica"):
"version": "^2.1.3" -> "^2.1.4",
"dependencies": {
"freddie": "^1.0.4" -> "^1.0.5"
}
'./chuck' ("chuck"):
"version": "^1.7.12" -> "^1.7.13",
"devDependencies": {
"freddie": "^1.0.4" -> "^1.0.5"
}
'./bernard' ("bernard"):
"version": "^1.3.2" -> "^1.3.3",
"dependencies": {
"erica": "^2.1.3" -> "^2.1.4",
}
'./alice':
"dependencies": {},
"devDependencies": {
"bernard": "^1.3.2" -> "^1.3.3",
}
Note that only core semver versions are supported, that is, versions of the form major.minor.patch
where major
, minor
and patch
are natural numbers. As yet Propagate does not support version ranges or multiple sets. Additionally, it will leave intact but otherwise ignore modifiers such as ^
and ~
. If you are not using either just these modifiers or no modifiers at all, Propagate is unlikely to work for you.
Installation
You can install Propagate via npm:
npm install --global propagate-cli
You may need to prepend sudo
, depending on your setup.
If you would like to contribute or would simply like to have a look at the code, you can clone the repository with Git...
git clone https://github.com/djalbat/propagate-cli.git
...then install the dependencies with npm from within the project's root directory:
npm install
Usage
Propagate has the following commands and options:
propagate [<options>] [<command>] [<argument>]
Commands:
help Show this help
version Show the version
initialise Create a configuration file
add-directory Add an additional directory
remove-directory Remove an additional directory
list-directories List directories, including the default directory
set-shell-commands Set the Git, build, install and publish shell commands
add-ignored-dependency Add an ignored dependency
list-ignored-dependencies List the ignored dependencies
remove-ignored-dependency Remove an ignored dependency
add-forced-dependency-relation Add a forced dependency relation
list-forced-dependency-relations List the forced dependency relations
remove-forced-dependency-relation Remove a forced dependency relation
Options:
--help|-h Show this help
--version|-v Show the version
--dry-run|-d Show updates but do not apply them
--quietly|-q Execute shell commands without printing to the console
--yes|-y Initially answer yes to prompts
In the directory that contains the sub-directories holding your project's packages and binaries, run the following command:
propagate initialise
To propagate the freddie
package, for example, run the following command:
propagate freddie
You can also execute a lone propagate
command from within a package's subdirectory and it will propagate that package.
Here are some things to bear in mind:
It is recommended that you initially use the
dry-run
option, which will list the updates without making any changes. Also, you should always use theyes
andquietly
options with caution.Propagate creates separate directed graphs for the dependencies and the developer dependencies. If there are cycles present in either graph, it will terminate and report one of the cycles. If there are cycles present in the combined graph, however, these are tolerated because they are justifiable in practice.
Updates are applied in a topological order of the dependencies with the initially propagated package updated first. What this means in practice is that dependencies are guaranteed to be updated before their dependents. Therefore, if you chose not to update a particular dependency or chose to terminate the update process altogether, usually no problems will result. However, bear in mind the following point.
It is possible, because of the aforementioned tolerance of cycles in the combined graph, that cases may arise where updates are applied that reference developer dependencies that have themselves yet to be updated. In these cases, Propagate will terminate before the propagation has even started and will tell you about the problem. There is little choice but to terminate prematurely in these cases because continuing with the propagation, even with careful user intervention, will almost certainly result in failure. The solution in these cases, which will be suggested by Propagate, is to add a forced dependency relation between the offending developer dependency and its dependent. Propagate does not alter the
package.json
files themselves, but pretends as if they were, adding a standard dependency relation as opposed to a developer dependency relation between the two, thus forcing the developer dependency to come first in the propagation. This itself may result in a cycle, of course, in which case you will have no alternative but to re-think your dependency structure.
It is important to understand what happens when you choose to answer 'no' to any of the prompts.
If you chose to answer 'no' at a save prompt, Propagate will assume that you do not want to propagate the package and will adjust all the remaining updates accordingly.
If you chose to answer 'no' at either a build prompt or an install prompt, Propagate will continue with the update. The rationale behind this is that the update in question might not be to a package but instead to a project that may need its
package.json
file updated with the latest dependencies but may not need to be built right away. Also bear in mind that you do not need to rebuild a package before publishing if all you are doing is updating its dependencies. Therefore you can safely answer 'no' at either of these prompts even for propagated packages.If you choose to answer 'no' at a Git prompt, much the same rationale as for installing and building holds.
If you choose to answer 'no' at a publish prompt, Propagate will again assume that you do not want to propagate the package and will make the necessary adjustments as before.
It is worth repeating that if you decide to terminate the update process entirely, do so by answering 'no' three times at any prompt in order to give Propagate the chance to exit gracefully and appraise you of any problems with developer dependencies.