@cara/porter
Advanced tools
Comparing version 4.0.0-beta.5 to 4.0.0-beta.6
{ | ||
"name": "@cara/porter", | ||
"description": "A middleware for web modules", | ||
"version": "4.0.0-beta.5", | ||
"version": "4.0.0-beta.6", | ||
"main": "src/porter.js", | ||
@@ -43,3 +43,3 @@ "repository": { | ||
"license": "BSD-3-Clause", | ||
"gitHead": "d8df8091a5799e872e6146fc8f4e26238eb023ad" | ||
"gitHead": "e5815618905195210146043f672d2f98fa9fdd50" | ||
} |
@@ -340,3 +340,3 @@ 'use strict'; | ||
const code = `${result.code}\n/*# sourceMappingURL=${path.basename(bundle.output)}.map */`; | ||
return [ code, { 'Last-Modified': bundle.updatedAt }]; | ||
return [ code, { 'Last-Modified': bundle.updatedAt.toGMTString() }]; | ||
} | ||
@@ -354,3 +354,3 @@ | ||
const code = `${result.code}\n//# sourceMappingURL=${path.basename(bundle.output)}.map`; | ||
return [ code, { 'Last-Modified': bundle.updatedAt } ]; | ||
return [ code, { 'Last-Modified': bundle.updatedAt.toGMTString() } ]; | ||
} | ||
@@ -369,3 +369,3 @@ | ||
return [ map, { 'Last-Modified': bundle.updatedAt } ]; | ||
return [ map, { 'Last-Modified': bundle.updatedAt.toGMTString() } ]; | ||
} | ||
@@ -372,0 +372,0 @@ |
108718