New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

namirasoft-node-cli

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

namirasoft-node-cli - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

1

dist/index.d.ts

@@ -7,2 +7,1 @@ export * from "./Application";

export * from "./BaseStorage";
export * from "./Logger";

@@ -23,3 +23,2 @@ "use strict";

__exportStar(require("./BaseStorage"), exports);
__exportStar(require("./Logger"), exports);
//# sourceMappingURL=index.js.map

10

dist/Logger.js

@@ -7,15 +7,15 @@ "use strict";

log(message) {
console.log(namirasoft_core_1.ConsoleColor.log(message));
namirasoft_core_1.ConsoleColor.log(message);
}
info(message) {
console.info(namirasoft_core_1.ConsoleColor.info(message));
namirasoft_core_1.ConsoleColor.info(message);
}
success(message) {
console.info(namirasoft_core_1.ConsoleColor.success(message));
namirasoft_core_1.ConsoleColor.success(message);
}
warning(message) {
console.warn(namirasoft_core_1.ConsoleColor.warning(message));
namirasoft_core_1.ConsoleColor.warning(message);
}
error(message) {
console.error(namirasoft_core_1.ConsoleColor.error(message));
namirasoft_core_1.ConsoleColor.error(message);
}

@@ -22,0 +22,0 @@ }

@@ -11,3 +11,3 @@ {

"private": false,
"version": "1.3.1",
"version": "1.3.2",
"main": "./dist/index.js",

@@ -21,4 +21,4 @@ "types": "./dist/index.d.ts",

"axios": "^1.6.8",
"namirasoft-core": "^1.3.2"
"namirasoft-core": "^1.3.4"
}
}

@@ -6,3 +6,2 @@ export * from "./Application";

export * from "./BaseNavigatorCommand";
export * from "./BaseStorage";
export * from "./Logger";
export * from "./BaseStorage";

@@ -7,20 +7,20 @@ import { ConsoleColor } from "namirasoft-core";

{
console.log(ConsoleColor.log(message));
ConsoleColor.log(message);
}
info(message: string)
{
console.info(ConsoleColor.info(message));
ConsoleColor.info(message);
}
success(message: string)
{
console.info(ConsoleColor.success(message));
ConsoleColor.success(message);
}
warning(message: string)
{
console.warn(ConsoleColor.warning(message));
ConsoleColor.warning(message);
}
error(message: string)
{
console.error(ConsoleColor.error(message));
ConsoleColor.error(message);
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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