We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The WebpackAutoInject plugin is increasing the version property in package.json.
WebpackAutoInject
version
package.json
There are 3 available options, each increasing different number:
Currently, every time build is run, it increases the version by 1 (patch option).
Suggestion is to create an argument to the build script that would apply the specified option. Also with letting patch to by the default option.
Examples: npm start build - default, for patch change npm start build --env.minor - for minor change npm start build --env.major - for major change
npm start build
npm start build --env.minor
npm start build --env.major
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
WebpackAutoInject
plugin is increasing theversion
property inpackage.json
.There are 3 available options, each increasing different number:
Currently, every time build is run, it increases the version by 1 (patch option).
Suggestion is to create an argument to the build script that would apply the specified option. Also with letting patch to by the default option.
Examples:
npm start build
- default, for patch changenpm start build --env.minor
- for minor changenpm start build --env.major
- for major changeThe text was updated successfully, but these errors were encountered: