Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lukeed/sirv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.0
Choose a base ref
...
head repository: lukeed/sirv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.1
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on May 8, 2019

  1. fix(sirv): handle extension-less files

    - Closes #26
    lukeed committed May 8, 2019

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    b2e1baf View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    c39f0e4 View commit details
  3. v0.4.1

    lukeed committed May 8, 2019
    Copy the full SHA
    aff045d View commit details
Showing with 18 additions and 20 deletions.
  1. +1 −1 lerna.json
  2. +2 −2 packages/sirv-cli/package.json
  3. +14 −16 packages/sirv/index.js
  4. +1 −1 packages/sirv/package.json
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.8.0",
"version": "0.4.0",
"version": "0.4.1",
"npmClient": "yarn",
"packages": [
"packages/*"
4 changes: 2 additions & 2 deletions packages/sirv-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sirv-cli",
"version": "0.4.0",
"version": "0.4.1",
"description": "A lightweight CLI program to serve static sites~!",
"repository": "lukeed/sirv",
"license": "MIT",
@@ -24,7 +24,7 @@
"kleur": "^3.0.0",
"local-access": "^1.0.1",
"sade": "^1.4.0",
"sirv": "^0.4.0",
"sirv": "^0.4.1",
"tinydate": "^1.0.0"
}
}
30 changes: 14 additions & 16 deletions packages/sirv/index.js
Original file line number Diff line number Diff line change
@@ -23,12 +23,10 @@ function toAssume(uri, extns) {
}

function find(uri, extns) {
if (!!~uri.lastIndexOf('.')) return FILES[uri];
let i=0, data, arr=toAssume(uri, extns);
for (; i < arr.length; i++) {
if (data=FILES[arr[i]]) break;
if (data = FILES[arr[i]]) return data;
}
return data;
}

function is404(req, res) {
@@ -80,18 +78,18 @@ module.exports = function (dir, opts={}) {

if (opts.dev) {
return function (req, res, next) {
let uri = decodeURIComponent(req.path || req.pathname || parser(req).pathname);
let arr = uri.includes('.') ? [uri] : toAssume(uri, extensions);
let file = arr.map(x => join(dir, x)).find(fs.existsSync);
if (!file) return next ? next() : isNotFound(req, res);

let stats = fs.statSync(file);
setHeaders(res, uri, stats);
send(req, res, file, stats, {
'Content-Type': mime.getType(file),
'Last-Modified': stats.mtime.toUTCString(),
'Content-Length': stats.size,
});
let stats, file, uri=decodeURIComponent(req.path || req.pathname || parser(req).pathname);
let arr = [uri].concat(toAssume(uri, extensions)).map(x => join(dir, x)).filter(fs.existsSync);
while (file = arr.shift()) {
stats = fs.statSync(file);
if (stats.isDirectory()) continue;
setHeaders(res, uri, stats);
send(req, res, file, stats, {
'Content-Type': mime.getType(file),
'Last-Modified': stats.mtime.toUTCString(),
'Content-Length': stats.size,
});
}
}
}

@@ -117,7 +115,7 @@ module.exports = function (dir, opts={}) {

return function (req, res, next) {
let pathname = decodeURIComponent(req.path || req.pathname || parser(req).pathname);
let data = find(pathname, extensions);
let data = FILES[pathname] || find(pathname, extensions);
if (!data) return next ? next() : isNotFound(req, res);

setHeaders(res, pathname, data.stats);
2 changes: 1 addition & 1 deletion packages/sirv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sirv",
"version": "0.4.0",
"version": "0.4.1",
"description": "The optimized & lightweight middleware for serving requests to static assets",
"repository": "lukeed/sirv",
"license": "MIT",