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

ts2uml

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts2uml - npm Package Compare versions

Comparing version 0.0.18 to 0.0.19

4

package.json
{
"name": "ts2uml",
"version": "0.0.18",
"version": "0.0.19",
"description": "typescript workflow to uml sequence",

@@ -21,4 +21,4 @@ "main": "index.js",

"@types/node": "^20.12.12",
"terser": "^5.31.0"
"terser": "^5.31.0"
}
}

@@ -11,15 +11,20 @@ "use strict";

const local = (0, path_1.join)(__dirname, './../../node_modules/.bin');
if ((0, fs_1.existsSync)(src)) {
if ((0, fs_1.existsSync)(local)) {
console.log(`copying ${src} to ${local}`);
(0, fs_1.copyFileSync)(src, local);
try {
if ((0, fs_1.existsSync)(src)) {
if ((0, fs_1.existsSync)(local)) {
console.log(`copying ${src} to ${local}`);
(0, fs_1.copyFileSync)(src, local);
}
else {
console.log(`copying ${src} to ${dest}`);
(0, fs_1.copyFileSync)(src, dest);
}
}
else {
console.log(`copying ${src} to ${dest}`);
(0, fs_1.copyFileSync)(src, dest);
console.log(`file ${src} does not exist`);
}
}
else {
console.log(`file ${src} does not exist`);
catch (e) {
console.log(e);
}
});
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