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

fis-command-release

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fis-command-release - npm Package Compare versions

Comparing version 0.8.6 to 0.8.7

2

package.json
{
"name" : "fis-command-release",
"description" : "fis release command.",
"version" : "0.8.6",
"version" : "0.8.7",
"author" : "FIS Team <fis@baidu.com>",

@@ -6,0 +6,0 @@ "homepage" : "http://fis.baidu.com/",

@@ -22,2 +22,2 @@ # fis-command-release

-u, --unique use unique compile caching
--debug debug mode
--verbose enable verbose output

@@ -78,3 +78,3 @@ /*

opt.beforeEach = function(){
flag = opt.debug ? '' : '.';
flag = opt.verbose ? '' : '.';
cost = (new Date).getTime();

@@ -111,3 +111,3 @@ };

process.stdout.write(
(opt.debug ? '' : ' ') +
(opt.verbose ? '' : ' ') +
(Date.now() - start + 'ms').bold.green + '\n'

@@ -131,3 +131,3 @@ );

process.stdout.write('\u0007');
} else if(opt.debug) {
} else if(opt.verbose) {
throw e;

@@ -153,3 +153,3 @@ } else {

.option('-u, --unique', 'use unique compile caching', Boolean, false)
.option('--debug', 'debug mode', Boolean, false)
.option('--verbose', 'enable verbose output', Boolean, false)
.action(function(){

@@ -162,3 +162,3 @@

//configure log
if(options.debug){
if(options.verbose){
fis.log.level = fis.log.L_ALL;

@@ -165,0 +165,0 @@ }

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