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

@fulminate/cli

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fulminate/cli - npm Package Compare versions

Comparing version 2.1.11 to 2.1.12

2

package.json
{
"name": "@fulminate/cli",
"version": "2.1.11",
"version": "2.1.12",
"description": "CLI for bootstrapping and simplifying control over Fulminate Framework projects.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -8,5 +8,6 @@ /**

* @param message
* @param spinner Provide existing spinner to restart it with new text.
* @returns {Spinner}
*/
build(message?: string): any;
build(message?: string, spinner?: any): any;
}

@@ -20,6 +20,10 @@ "use strict";

* @param message
* @param spinner Provide existing spinner to restart it with new text.
* @returns {Spinner}
*/
CliSpinnerFactory.prototype.build = function (message) {
CliSpinnerFactory.prototype.build = function (message, spinner) {
if (message === void 0) { message = ''; }
if (spinner) {
spinner.stop();
}
return new clui_1.Spinner(message, ['⣾', '⣽', '⣻', '⢿', '⡿', '⣟', '⣯', '⣷']);

@@ -26,0 +30,0 @@ };

@@ -11,3 +11,3 @@ "use strict";

it('should return correct path', function () {
chai_1.expect(path_util_1.getWorkingDirectory().split('/').reverse()[0]).to.not.equal('cli');
chai_1.expect(path_util_1.getWorkingDirectory().split('/').reverse()[0]).to.equal('cli');
});

@@ -14,0 +14,0 @@ });

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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