-> v0.4.0

This commit is contained in:
Rich Harris
2018-01-14 12:07:06 -05:00
parent 14df138528
commit 8faa98af6a
3 changed files with 10 additions and 2 deletions

View File

@@ -1,5 +1,13 @@
# sapper changelog
## 0.4.0
* `%sapper.main%` has been replaced with `%sapper.scripts%` ([#86](https://github.com/sveltejs/sapper/issues/86))
* Node 6 support ([#67](https://github.com/sveltejs/sapper/pull/67))
* Explicitly load css-loader and style-loader ([#72](https://github.com/sveltejs/sapper/pull/72))
* DELETE requests are handled with `del` exports ([#77](https://github.com/sveltejs/sapper/issues/77))
* Send preloaded data for first route to client, where possible ([#3](https://github.com/sveltejs/sapper/issues/3))
## 0.3.2
* Expose `prefetch` function ([#61](https://github.com/sveltejs/sapper/pull/61))

View File

@@ -38,7 +38,7 @@ function create_templates() {
error({
title: `templates/${file}`,
body: `<script src='%sapper.main%'> has been removed — use %sapper.scripts% (without the <script> tag) instead`,
body: `<script src='%sapper.main%'> is unsupported — use %sapper.scripts% (without the <script> tag) instead`,
url: 'https://github.com/sveltejs/sapper/issues/86',
frame
});

View File

@@ -1,6 +1,6 @@
{
"name": "sapper",
"version": "0.3.2",
"version": "0.4.0",
"description": "Military-grade apps, engineered by Svelte",
"main": "lib/index.js",
"bin": {