Rich Harris
c4c09550eb
Merge pull request #260 from sveltejs/another-sorting-bug
...
fix sorting
2018-05-05 09:43:16 -04:00
Rich Harris
da47fdec96
fix sorting
2018-05-05 09:38:24 -04:00
Rich Harris
971342ac7a
set preloading: true when appropriate
2018-05-04 23:23:41 -04:00
Rich Harris
3becc1cbe2
error on incorrect init args
2018-05-04 23:06:10 -04:00
Rich Harris
8ee5346900
switch to single App component model ( #157 )
2018-05-04 22:46:41 -04:00
Rich Harris
9e4b79c6ff
Merge pull request #258 from sveltejs/gh-208
...
exit with code 1 if build/export fails
2018-05-04 17:48:29 -04:00
Rich Harris
4ec1c65395
exit with code 1 if build/export fails - fixes #208
2018-05-04 17:42:37 -04:00
Rich Harris
c743d11b3b
-> v0.11.1
v0.11.1
2018-05-04 17:22:34 -04:00
Rich Harris
b525eb6480
get tests passing
2018-05-04 17:19:39 -04:00
Rich Harris
210d03fb06
Merge branch 'collision' of https://github.com/akihikodaki/sapper into akihikodaki-collision
2018-05-04 17:08:55 -04:00
Rich Harris
0685cc4cbe
Merge branch 'master' of github.com:sveltejs/sapper
2018-05-04 17:08:47 -04:00
Rich Harris
9e2d0a7fbc
Merge branch 'master' into collision
2018-05-04 17:05:18 -04:00
Rich Harris
a751a3b731
Merge pull request #254 from akihikodaki/dot_strict
...
Ignore files and directories with leading dots except .well-known
2018-05-04 17:04:27 -04:00
Rich Harris
bc7faeeab9
remove unused esm package
2018-05-04 16:55:57 -04:00
Rich Harris
a88c1de2f6
Merge pull request #256 from johnmuhl/esm
...
replace discontinued @std/esm package with esm
2018-05-04 16:53:35 -04:00
john muhl
a231795c4c
replace discontinued @std/esm package with esm
2018-05-04 13:56:17 -05:00
Akihiko Odaki
ba7525c676
Ignore files and directories with leading dots except .well-known
2018-05-04 22:18:23 +09:00
Rich Harris
4843e9a40a
-> v0.11.0
v0.11.0
2018-05-03 23:51:04 -04:00
Rich Harris
ca4a1ca9b0
Merge pull request #251 from sveltejs/client-info
...
only save the bits of client_info we need
2018-05-03 23:49:30 -04:00
Rich Harris
ad7c872ee3
Merge pull request #250 from sveltejs/gh-240
...
implement --launcher
2018-05-03 23:49:06 -04:00
Rich Harris
4f98324a8a
oops, missed one
2018-05-03 23:46:41 -04:00
Rich Harris
1fcf3f79ee
only save the bits of client_info we need
2018-05-03 23:42:19 -04:00
Rich Harris
0b5741194a
Merge pull request #205 from sveltejs/gh-140
...
prefetch on mouse stop
2018-05-03 23:31:08 -04:00
Rich Harris
9653d4c6ce
Merge pull request #249 from sveltejs/gh-241
...
allow process.env.NODE_ENV to be overridden when building
2018-05-03 23:30:55 -04:00
Rich Harris
4fa5ed5e2c
simplify
2018-05-03 23:30:09 -04:00
Rich Harris
f4eac2515f
fix tests
2018-05-03 23:23:02 -04:00
Rich Harris
1a5364ae9d
on second thoughts, default to build/index.js
2018-05-03 23:16:56 -04:00
Rich Harris
d7a9074c69
implement --launcher
2018-05-03 23:04:05 -04:00
Rich Harris
00adb53802
allow process.env.NODE_ENV to be overridden when building ( #241 )
2018-05-03 22:21:00 -04:00
Rich Harris
b10edddc96
cheat
2018-05-03 22:01:14 -04:00
Rich Harris
93b2d12438
Merge branch 'master' into gh-140
2018-05-03 21:54:52 -04:00
Rich Harris
7303e811be
update tests, move test app to v2
2018-05-03 21:54:23 -04:00
Rich Harris
992d89027d
Merge branch 'master' into collision
2018-05-03 21:44:28 -04:00
Rich Harris
3531cc587d
-> v0.10.7
v0.10.7
2018-05-03 21:42:50 -04:00
Rich Harris
562a91fa57
Merge pull request #245 from johnmuhl/patch-1
...
Include process.env in exporter server options
2018-05-03 21:40:50 -04:00
Rich Harris
93128a0156
Merge pull request #243 from akihikodaki/dot
...
Accept directory entries which starts with dot as routes
2018-05-03 21:39:46 -04:00
Rich Harris
d7a2132966
Merge pull request #234 from akihikodaki/master
...
Do not encode characters allowed in path when generating routes
2018-05-03 21:37:59 -04:00
John Muhl
56ac1aea9d
match sapper start
2018-04-22 22:50:05 -05:00
John Muhl
37a9fb62e2
Include process.env in exporter server options
2018-04-22 20:29:47 -05:00
Rich Harris
a70e88b1f4
-> v0.10.6
v0.10.6
2018-04-19 13:03:12 -04:00
Akihiko Odaki
6f9ce9ce85
Accept directory entries which starts with dot as routes
...
It allows to implement .well-known URIs.
2018-04-19 22:04:03 +09:00
Akihiko Odaki
917dd60cc3
Allow to have middleware for the path same with a HTML page
...
HTTP allows to change the type of the content to serve by Accept field in
the request. The middleware for the path same with a HTML page will
be inserted before the HTML renderer, and can take advantage of this
feature, using expressjs's "accepts" method, for example.
2018-04-15 23:11:08 +09:00
Akihiko Odaki
b13cc6f39a
Do not encode characters allowed in path when generating routes
...
In RFC 3986, some characters not allowed in query, which encodeURIComponent
is designed for, is allowed in path.
A notable example is "@", which is commonly included in paths of social
profile pages. Such characters should not be encoded.
The new encoding function is conforming to the RFC.
2018-04-14 01:08:27 +09:00
Rich-Harris
2758382c68
-> v0.10.5
v0.10.5
2018-04-06 18:32:44 -07:00
Rich Harris
dd7f1ff99c
Merge pull request #231 from sveltejs/fix-missing-service-worker
...
fix missing service worker
2018-04-06 21:31:53 -04:00
Rich-Harris
45142cd037
fix missing service worker
2018-04-06 14:44:50 -07:00
Rich-Harris
ceb1caf1de
-> v0.10.4
v0.10.4
2018-04-03 21:43:30 -04:00
Rich Harris
7e263a3076
Merge pull request #227 from naturalethic/upgrade-chokidar-disable-globbing-issue-212
...
Upgrade chokidar disable globbing issue 212
2018-04-03 21:42:34 -04:00
Rich Harris
ec88d4a430
Remove unnecessary globbing pattern
2018-04-03 21:38:28 -04:00
Joshua Kifer
909ea72108
Update dev.ts
2018-04-03 14:04:08 -07:00