We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d478c commit b769912Copy full SHA for b769912
cmd/semantic-release/main.go
@@ -262,6 +262,10 @@ func cliHandler(cmd *cobra.Command, args []string) {
262
exitIfError(ioutil.WriteFile(".version", []byte(newVer), 0644))
263
}
264
265
+ if len(conf.UpdateFiles) == 0 && len(conf.FilesUpdaterPlugins) > 0 {
266
+ logger.Println("warning: file update plugins found but no files marked for update. You may be missing the update flag, e.g. --update package.json")
267
+ }
268
+
269
if len(conf.UpdateFiles) > 0 {
270
logger.Println("updating files...")
271
updater, err := pluginManager.GetChainedUpdater()
0 commit comments