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

fis-command-release

Package Overview
Dependencies
Maintainers
2
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.9.7 to 0.9.10

4

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

@@ -20,3 +20,3 @@ "homepage" : "http://fis.baidu.com/",

"dependencies" : {
"chokidar" : "0.6.3",
"chokidar" : "0.8.4",
"livereload-server-spec" : "0.2.3"

@@ -23,0 +23,0 @@ },

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

var safePathReg = /[\\\/][_\-.\s\w]+$/i;
var ignoredReg = /[\/\\](?:output\b[^\/\\]*([\/\\]|$)|\.|fis-conf\.js$)/i;
function listener(path){

@@ -27,4 +28,15 @@ if(safePathReg.test(path)){

.watch(root, {
ignored : /[\/\\](?:output\b[^\/\\]*([\/\\]|$)|\.|fis-conf\.js$)/i,
// usePolling: false,
ignored : function(path){
var ignored = ignoredReg.test(path);
if (fis.config.get('project.exclude')){
ignored = ignored ||
fis.util.filter(path, fis.config.get('project.exclude'));
}
if (fis.config.get('project.watch.exclude')){
ignored = ignored ||
fis.util.filter(path, fis.config.get('project.watch.exclude'));
}
return ignored;
},
usePolling: false,
persistent: true

@@ -31,0 +43,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