npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

ui5-bump-version

v1.1.0

Published

Bump version for ui5 application

Readme

SAP UI5 Bump version

This module aims to update the version from the webapp/manifest.json file. We based the bump process following the Semantic Versioning 2.0.0.

Install

npm install --save jsonfile

Usage: ui5-bump {major|minor|patch|build} |path|

Usage

In your SAP Fiori UI5 application directory, execute the following command. If your manifest file is not under webapp/manifest.json you can add the path after the version level.

ui5-bump

Examples

Package script

"scripts": { "start": "fiori run --open test/flpSandbox.html?sap-client=600", "deploy_build": "ui5-bump build && npm run build && fiori deploy -- -y --config ui5-deploy.yaml && rimraf archive.zip", "deploy_patch": "ui5-bump patch && npm run build && fiori deploy -- -y --config ui5-deploy.yaml && rimraf archive.zip", "deploy_minor": "ui5-bump minor && npm run build && fiori deploy -- -y --config ui5-deploy.yaml && rimraf archive.zip", "deploy_major": "ui5-bump major && npm run build && fiori deploy -- -y --config ui5-deploy.yaml && rimraf archive.zip", ... },

Major version (from 1.0.2 to 2.0.0)

ui5-bump major

Minor version (from 1.0.2 to 1.1.0)

ui5-bump minor

Patch version (from 1.0.2 to 1.0.3)

ui5-bump patch

Build version (from 1.0.2 to 1.0.2+YYYYMMDDHHmmss)

ui5-bump build

For Developper

To test and run MOCHA you can run :

npm run test

To test the full module, use VSCode and in the debug section launch the recorded configuration.

Release

v1.1.0

  • BugFix: When writing into file, the JSON lost his formatting
  • Bugfix: the argument path wasn't correctly handled
  • Feature: the output is now much more clean and flexible. The new version is displayed only on the console. Like this it is possible to store it inside environement variable

v1.0.2

  • BugFix: Dependency jsoonfile added

v1.0.1

  • The build pattern respect the Version semantic (before it was _Build, now it is +)
  • Add Year in the generated build number
  • Change the documention