Compare commits

..

2 Commits

Author SHA1 Message Date
Rich Harris
afcd643035 -> v0.18.5 2018-08-30 20:41:03 -04:00
Rich Harris
7cc2a03aae oops 2018-08-30 20:38:40 -04:00
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# sapper changelog
## 0.18.5
* Bugfix
## 0.18.4
* Handle non-Sapper responses when exporting ([#382](https://github.com/sveltejs/sapper/issues/392))

View File

@@ -1,6 +1,6 @@
{
"name": "sapper",
"version": "0.18.4",
"version": "0.18.5",
"description": "Military-grade apps, engineered by Svelte",
"main": "dist/middleware.js",
"bin": {

View File

@@ -288,7 +288,7 @@ class Watcher extends EventEmitter {
assets: result.assets
}, null, ' '));
const client_files = result.assets.map((file: string) => `client/${file}`);
const client_files = result.chunks.map((file: string) => `client/${file}`);
create_serviceworker_manifest({
routes: create_routes(),