0.8.3 • Published 8 months ago

@sap-ux/ui5-info v0.8.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

@sap-ux/ui5-info

Gets UI5 version info for available UI5 versions.

Installation

Npm npm install --save @sap-ux/ui5-info

Yarn yarn add @sap-ux/ui5-info

Pnpm pnpm add @sap-ux/ui5-info

Usage

import { getUI5Versions, type UI5VersionFilterOptions } from '@sap-ux/ui5-info';

const filterOptions: UI5VersionFilterOptions = {
    minSupportedUI5Version: '1.84.0',
    includeMaintained: true
};
const ui5Versions = await getUI5Versions(filterOptions);
/**
   ui5Versions :
  [
    {
        "version": "1.119.0",
        "maintained": true,
    },
    {
        "version": "1.117.0",
         "maintained": false,
    },
    {
        "version": "1.114.0",
         "maintained": true,
    },
    {
        "version": "1.108.0",
         "maintained": false,
    },
    {
        "version": "1.96.0",
         "maintained": false,
    },
    {
        "version": "1.84.0",
         "maintained": true,
    }
]
 */

See TypeScript doc for a full description of possible value for UI5VersionFilterOptions

Keywords

SAP UI5

0.8.3

8 months ago

0.8.2

8 months ago

0.8.1

10 months ago

0.8.0

10 months ago

0.7.1

10 months ago

0.7.0

11 months ago

0.6.0

12 months ago

0.5.0

1 year ago

0.4.0

1 year ago

0.3.3

1 year ago

0.3.2

1 year ago

0.3.1

1 year ago

0.3.0

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

2 years ago

0.2.0

2 years ago