mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 11:35:28 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afcd643035 | ||
|
|
7cc2a03aae |
@@ -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))
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user