@rrze/bumper
v0.0.2
Published
A utility to increment the version in a WordPress plugin/theme file.
Downloads
1
Keywords
Readme
@rrze/bumper
@rrze/bumper
is a utility tool designed to increment the version number in a WordPress plugin or theme file. This tool is particularly useful for developers who need to manage versioning in their WordPress projects.
Installation
You can install @rrze/bumper
using npm:
npm install -g @rrze/bumper
Usage
You can use @rrze/bumper
to increment the version number of your WordPress plugin or theme file. The version number can be incremented by patch
, minor
, or major
levels. Here are some examples:
# Increment the patch version (e.g., from 1.0.0 to 1.0.1)
bumper plugin.php patch
# Increment the minor version (e.g., from 1.0.0 to 1.1.0)
bumper style.css minor
# Increment the major version (e.g., from 1.0.0 to 2.0.0)
bumper plugin.php major