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
Hi,
I really found this npm package useful. I feel it will be more helpful if we can access the previous version in a JSON object.
Current JSON : const build = { version: "1.3.12", timestamp: "Wed Feb 02 2022 13:16:10 GMT+0530 (India Standard Time)", message: null, git: { user: "Ramaraju-Sanjeevi", branch: "main", hash: "*****", fullHash: "ddcf03752285a8082e4d12f65c00" } };
Desired JSON: const build = { version: "1.3.12", timestamp: "Wed Feb 02 2022 13:16:10 GMT+0530 (India Standard Time)", message: null, previousVersion: 1.3.11 git: { user: "Ramaraju-Sanjeevi", branch: "main", hash: "*****", fullHash: "ddcf03752285a8082e4d12f65c00" } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I really found this npm package useful. I feel it will be more helpful if we can access the previous version in a JSON object.
Current JSON : const build = {
version: "1.3.12",
timestamp: "Wed Feb 02 2022 13:16:10 GMT+0530 (India Standard Time)",
message: null,
git: {
user: "Ramaraju-Sanjeevi",
branch: "main",
hash: "*****",
fullHash: "ddcf03752285a8082e4d12f65c00"
}
};
Desired JSON: const build = {
version: "1.3.12",
timestamp: "Wed Feb 02 2022 13:16:10 GMT+0530 (India Standard Time)",
message: null,
previousVersion: 1.3.11
git: {
user: "Ramaraju-Sanjeevi",
branch: "main",
hash: "*****",
fullHash: "ddcf03752285a8082e4d12f65c00"
}
};
The text was updated successfully, but these errors were encountered: