Files
sapper/CHANGELOG.md
Rich Harris a6dc61a182 -> v0.5.1
2018-01-16 08:47:50 -05:00

3.1 KiB

sapper changelog

0.5.1

  • Only write service-worker.js to filesystem in dev mode (#90)

0.5.0

  • Experimental support for sapper export (#9)
  • Lazily load chokidar, for faster startup (#64)

0.4.0

  • %sapper.main% has been replaced with %sapper.scripts% (#86)
  • Node 6 support (#67)
  • Explicitly load css-loader and style-loader (#72)
  • DELETE requests are handled with del exports (#77)
  • Send preloaded data for first route to client, where possible (#3)

0.3.2

  • Expose prefetch function (#61)

0.3.1

  • Fix missing runtime.js

0.3.0

  • Move sapper/runtime/app.js to sapper/runtime.js
  • Cancel navigation if overtaken by second navigation (#48)
  • Store preloaded data, to avoiding double prefetching (#49)
  • Pass server request object to preload (#54)
  • Nested routes (#55)

0.2.10

  • Handle deep links correctly (#44)

0.2.9

  • Don't write files to disk in prod mode

0.2.8

  • Add goto function (#29)
  • Don't use /tmp as destination in Now environments

0.2.7

  • Fix streaming bug

0.2.6

  • Render main.js back to templates, to allow relative imports (#40)

0.2.5

  • Fix nested routes on Windows (#39)
  • Rebundle when routes and main.js change (#34)
  • Add Link...preload headers for JavaScript assets (#2)
  • Stream document up to first dynamic content (#19)
  • Error if routes clash (#33)

0.2.4

  • Posixify path to HMR client

0.2.3

  • Posixify import paths, even on Windows (#31)
  • Pass url to 404 handler

0.2.2

  • Create destination directory when building, don't assume it's already there from dev mode
  • We have tests now!

0.2.1

  • Inject HMR logic in dev mode

0.2.0

  • Separate sapper build from prod server (#21)

0.1.3-5

  • Fix typo

0.1.2

  • Use atime.getTime() and mtime.getTime() instead of atimeMs and mtimeMs (#11)
  • Make dest dir before anyone tries to write to it (#18)

0.1.1

  • Expose resolved pathname to sapper/runtime/app.js as __app__ inside main.js

0.1.0

  • First public preview