Comparing version 0.4.0 to 0.5.0
@@ -160,3 +160,3 @@ function create(options) { | ||
if (path.existsSync(filename) && fs.statSync(filename).isFile()) { | ||
if (fs.existsSync(filename) && fs.statSync(filename).isFile()) { | ||
break; | ||
@@ -163,0 +163,0 @@ } |
@@ -45,3 +45,3 @@ 'use strict'; | ||
.filter(function (filename) { | ||
return (path.existsSync(filename) && fs.statSync(filename).isFile()); | ||
return (fs.existsSync(filename) && fs.statSync(filename).isFile()); | ||
})[0]; | ||
@@ -48,0 +48,0 @@ if (!filename) { |
{ | ||
"name": "appserver", | ||
"version": "0.4.0", | ||
"version": "0.5.0", | ||
"description": "A connect based middleware to support local development against a remote backend.", | ||
@@ -5,0 +5,0 @@ "main": "./lib/appserver", |
@@ -7,3 +7,3 @@ # appserver | ||
This module can operate in two different modi. First as a stand-alone application that | ||
This module can operate in two different modes. First as a stand-alone application that | ||
is able to serve files from some configured directories. Second mode is via a node module | ||
@@ -10,0 +10,0 @@ that can be loaded into some existing node project. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41834