Compare commits

...

2 Commits

Author SHA1 Message Date
Rich Harris
9cd4da4c39 -> v0.22.5 2018-10-01 17:54:29 -04:00
Rich Harris
6ded1a5975 slap self in face 2018-10-01 17:52:57 -04:00
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# sapper changelog # sapper changelog
## 0.22.5
* Fix `sapper dev`. Oops.
## 0.22.4 ## 0.22.4
* Ensure launcher does not overwrite a module ([#455](https://github.com/sveltejs/sapper/pull/455)) * Ensure launcher does not overwrite a module ([#455](https://github.com/sveltejs/sapper/pull/455))

View File

@@ -1,6 +1,6 @@
{ {
"name": "sapper", "name": "sapper",
"version": "0.22.4", "version": "0.22.5",
"description": "Military-grade apps, engineered by Svelte", "description": "Military-grade apps, engineered by Svelte",
"bin": { "bin": {
"sapper": "./sapper" "sapper": "./sapper"

View File

@@ -256,7 +256,7 @@ class Watcher extends EventEmitter {
execArgv.push(`--inspect-port=${this.devtools_port}`); execArgv.push(`--inspect-port=${this.devtools_port}`);
} }
this.proc = child_process.fork(`${dest}/server.js`, [], { this.proc = child_process.fork(`${dest}/server/server.js`, [], {
cwd: process.cwd(), cwd: process.cwd(),
env: Object.assign({ env: Object.assign({
PORT: this.port PORT: this.port