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

fis-command-server

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fis-command-server - npm Package Compare versions

Comparing version

to
0.2.8

2

package.json
{
"name" : "fis-command-server",
"description" : "fis server command.",
"version" : "0.2.7",
"version" : "0.2.8",
"author" : "FIS Team <fis@baidu.com>",

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

@@ -194,2 +194,3 @@ /*

.action(function(cmd, options){
var conf = getConf();
switch (cmd){

@@ -237,3 +238,2 @@ case 'start':

case 'info':
var conf = getConf();
if(fis.util.isFile(conf)){

@@ -246,2 +246,11 @@ conf = fis.util.readJSON(conf);

break;
case 'open':
if(fis.util.isFile(conf)){
conf = fis.util.readJSON(conf);
if(fis.util.isDir(conf.root)){
var open = fis.util.isWin() ? 'start' : 'open';
require('child_process').exec(open + ' ' + fis.util.escapeShellArg(conf.root));
}
}
break;
default :

@@ -269,4 +278,8 @@ commander.help();

commander
.command('open')
.description('open document root directory');
commander
.command('install <name>')
.description('install server framework');
};