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

@ui5/tooling-webc

Package Overview
Dependencies
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ui5/tooling-webc - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

12

lib/generate/index.js

@@ -107,2 +107,14 @@ const fs = require("fs");

// Notify the user of any missing api.json files
let apiFilesMissing = false;
apiFilesPaths.forEach(apiFilePath => {
if (!fs.existsSync(apiFilePath)) {
console.log(`Unable to read the ${apiFilePath} file.\nPlease run: "npm run build" / "yarn build" for the web components package first.`);
apiFilesMissing = true;
}
});
if (apiFilesMissing) {
process.exit();
}
// build the API

@@ -109,0 +121,0 @@ const apiFiles = apiFilesPaths.map(apiFilePath => `${fs.readFileSync(apiFilePath)}`);

4

lib/transpile.js

@@ -24,2 +24,6 @@ const fs = require("fs").promises;

const output = await generateAll(packageName, packageConfig, aliases);
if (output.length === 0) {
console.log(`Warning: no files found for package: ${packageName}!\nPlease run: "npm run build" / "yarn build" for the web components package first.`);
process.exit();
}

@@ -26,0 +30,0 @@ try {

2

package.json
{
"name": "@ui5/tooling-webc",
"version": "0.2.6",
"version": "0.2.7",
"description": "UI5 Tooling Extensions to include UI5 Web Components projects into OpenUI5/SAPUI5",

@@ -5,0 +5,0 @@ "author": "SAP SE",

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