Socket
Socket
Sign inDemoInstall

ora

Package Overview
Dependencies
14
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.1 to 1.0.0

2

index.js

@@ -34,3 +34,3 @@ 'use strict';

this.frameIndex = 0;
this.enabled = this.options.enabled || ((this.stream && this.stream.isTTY) && !process.env.CI);
this.enabled = typeof this.options.enabled === 'boolean' ? this.options.enabled : ((this.stream && this.stream.isTTY) && !process.env.CI);
}

@@ -37,0 +37,0 @@ frame() {

{
"name": "ora",
"version": "0.4.1",
"version": "1.0.0",
"description": "Elegant terminal spinner",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -91,6 +91,5 @@ # ora [![Build Status](https://travis-ci.org/sindresorhus/ora.svg?branch=master)](https://travis-ci.org/sindresorhus/ora)

Type: `boolean`<br>
Default: `false`
Type: `boolean`
Force enabling of the spinner regardless of the `stream` not being run inside a TTY context and/or in a CI environment.
Force enable/disable the spinner. If not specified, the spinner will be enabled if the `stream` is being run inside a TTY context (not spawned or piped) and/or not in a CI environment.

@@ -97,0 +96,0 @@ ### Instance

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc