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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ui5-versionmanager

v0.0.13

Published

This cli application enables a ui5 lib version replacement within a pipeline like AzureDevops.

Downloads

4

Readme

motivation

This cli application enables an UI5 lib version replacement within a pipeline like AzureDevops, Travis CI or Jenkins. It replaces the src from index.html and manifest.json with a target version given from a providing hook method.

If you have a domain (apps which belonging together to fullfill a process) of applications which means you have an amount of apps which will be build with a central build pipeline template, every app should have the same ui5 lib version. ui5-vman helps you to achieve a consistently version management by modifying the version in the target files.

installation

npm i ui5-versionmanager

use in cli

ui5-vman --modify --mod='onPrem' --manifestPath='test/manifest.json' --indexPath='test/index.html'  --versionEndpoint='https%3A%2F%2Fendpoint.com%2Fsap%2Fopu%2Fodata%2Flew%2Fui5bibversmanager_srv%2FGroupVersion%28ui5Group%3DMyGroup%27%27%2Cactive%3Dtrue%29%2Fversion%2F%24value'

argument/command | description ------------ | ------------- modify | command to modify files mod | which mode should be execute? onPrem: OnPremise(SAP Gateway)/Fiori Launchpad(via index.html reference) or SCP (via neo-app.json comming soon) manifestPath | path to manifest.json indexPath | path to index.html versionEndpoint | service endpoint which returns a valid ui5 lib version as string in response body

pipeline example (AzureDevops)

Following example shows a powerscript task from a build pipeline which will be managed by the ui5-versionmanager.

node .\node_modules\ui5-versionmanager\ui5-vman.js --modify --mod='onPrem' --manifestPath=$(manifestpath) --indexPath=$(indexpath)  --versionEndpoint=$(endpoint)

Image of task in build pipeline

before ui5-vman modify

before modify

after ui5-vman modify

after modify

hints

  • The endpoint has to be URI encoded (use: urlencoder )
  • versionEndpoint: You need a service which has to response in the body with a valid ui5 lib version as string (use: Available UI5 versions )
  • to achieve different ui5 lib versions inside a central pipeline template, you can set different endpoints to the given pipeline