diff --git a/CHANGELOG.md b/CHANGELOG.md index fe12dfb..9a21365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # sapper changelog +## 0.9.0 + +* Use `devalue` instead of `serialize-javascript`, allowing `preload` to return non-POJOs and cyclical/repeated references, but *not* functions ([#112](https://github.com/sveltejs/sapper/issues/112)) +* Kill child process if webpack crashes ([#177](https://github.com/sveltejs/sapper/issues/177)) +* Support HMR on remote devices ([#165](https://github.com/sveltejs/sapper/issues/165)) +* Remove hard-coded port (([#169](https://github.com/sveltejs/sapper/issues/169))) +* Allow non-JS files, e.g. TypeScript to be used as entry points and server routes ([#57](https://github.com/sveltejs/sapper/issues/57)) +* Faster startup ([#173](https://github.com/sveltejs/sapper/issues/173)) + ## 0.8.4 * Fix route sorting ([#175](https://github.com/sveltejs/sapper/pull/175)) diff --git a/package.json b/package.json index 2ee260d..538f5c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sapper", - "version": "0.8.4", + "version": "0.9.0", "description": "Military-grade apps, engineered by Svelte", "main": "middleware.js", "bin": { diff --git a/src/cli/export.ts b/src/cli/export.ts index 8e4598a..6f2efb6 100644 --- a/src/cli/export.ts +++ b/src/cli/export.ts @@ -1,15 +1,12 @@ import * as child_process from 'child_process'; import * as path from 'path'; import * as sander from 'sander'; -import polka from 'polka'; import cheerio from 'cheerio'; import URL from 'url-parse'; import fetch from 'node-fetch'; import * as ports from 'port-authority'; import { dest } from '../config'; -const app = polka(); - export async function exporter(export_dir: string) { const build_dir = dest();