Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sap-ux/ui5-config

Package Overview
Dependencies
Maintainers
3
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap-ux/ui5-config - npm Package Compare versions

Comparing version 0.13.2 to 0.13.3

11

package.json

@@ -12,3 +12,3 @@ {

},
"version": "0.13.2",
"version": "0.13.3",
"license": "Apache-2.0",

@@ -21,3 +21,3 @@ "main": "dist/index.js",

"dependencies": {
"@sap-ux/yaml": "0.11.4"
"@sap-ux/yaml": "0.11.5"
},

@@ -29,4 +29,4 @@ "devDependencies": {

"engines": {
"pnpm": ">=6.26.1",
"node": ">=12.22.5 < 13.0.0 || >= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0"
"pnpm": ">=6.26.1 < 7.0.0 || >=7.1.0",
"node": ">=12.22.5 < 13.0.0 || >= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0"
},

@@ -44,4 +44,3 @@ "scripts": {

"unlink": "pnpm unlink --global"
},
"readme": "# @sap-ux/ui5-config\nUtility module to create and update [UI5 tooling configuration](https://sap.github.io/ui5-tooling/pages/Configuration/) files (`ui5*.yaml`) with helper methods specifically for Fiori tools middlewares.\n\n## Installation\nNpm\n`npm install --save @sap-ux/ui5-config`\n\nYarn\n`yarn add @sap-ux/ui5-config`\n\nPnpm\n`pnpm add @sap-ux/ui5-config`\n\n## Usage\n\nCreate a new config file\n```javascript\n// generate an empty instance\nconst ui5Config = await UI5Config.newInstance('');\n\n// set the UI5 framework with a specific version\nui5Config.addUI5Framework('SAPUI5', '1.64.0', []);\n\n// create the file\nfs.write('./ui5.yaml', ui5Config.toString());\n```\n\nAdd a middleware to an existing file\n```javascript\n// load a config from the filesytem\nconst ui5Config = await UI5Config.newInstance(fs.read('./ui5.yaml'));\n\n// add a middlewre\nui5Config.addFioriToolsAppReloadMiddleware();\n\n// write the changes back to the filestystem\nfs.write('./ui5.yaml', ui5Config.toString());\n```\n\nSee more example in [`/test/index.test.ts`](./test/index.test.ts)\n\n## Keywords\nSAP Fiori freestyle\n"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc