From 16d3390f8cc71cb383613a3a0e7efa5d79efc65c Mon Sep 17 00:00:00 2001 From: Anton Kazarinov Date: Wed, 18 Dec 2019 12:07:26 +0500 Subject: [PATCH] doc: bumpFiles key for file path is not valid --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1cc89cc4e..6a0cb957c 100644 --- a/README.md +++ b/README.md @@ -365,17 +365,17 @@ YES! Using `bumpFiles` (and `packageFiles`) configurations you should be able to { "bumpFiles": [ { - "file": "MY_VERSION_TRACKER.txt", + "filename": "MY_VERSION_TRACKER.txt", // The `plain-text` updater assumes the file contents represents the version. "type": "plain-text" }, { - "file": "a/deep/package/dot/json/file/package.json", + "filename": "a/deep/package/dot/json/file/package.json", // The `json` updater assumes the version is available under a `version` key in the provided JSON document. "type": "json" - } + }, { - "file": "VERSION_TRACKER.json", + "filename": "VERSION_TRACKER.json", // See "Custom `updater`s" for more details. "updater": "standard-version-updater.js" }