1. 06 1月, 2017 5 次提交
  2. 05 1月, 2017 4 次提交
  3. 04 1月, 2017 4 次提交
  4. 03 1月, 2017 1 次提交
  5. 02 1月, 2017 9 次提交
  6. 01 1月, 2017 10 次提交
  7. 31 12月, 2016 7 次提交
    • N
      package.json: set publishConfig.tag · 629051db
      nkzawa 提交于
      629051db
    • N
      Release 2.0.0-beta.7 · 72b910a1
      nkzawa 提交于
      72b910a1
    • A
      Add app's node_modules dir to resolveLoaders. (#583) · 3dae510d
      Arunoda Susiripala 提交于
      Otherwise, webpack will throw an error saying
      it couldn't find entries.
      That's because it couldn't find babel-loader and
      other loaders installed into app's node_modules dir.
      3dae510d
    • A
      Add Gzip support for JSON pages (#571) · 165924b7
      Arunoda Susiripala 提交于
      * Server JSON pages directly from the filesystem.
      
      * Make Json pages even if there's an error.
      
      * Implement much better page serving.
      
      * Use JsonPagesPlugin in the production mode as well.
      
      * Add gzip support for JSON pages.
      
      * Use glob-promise instead of recursive-readdir
      
      * Handle renderStatic 404 properly.
      
      * Simply the gzip code.
      
      * Cache already read JSON pages.
      
      * Change JSON pages extension to .json.
      
      * Fix HMR related issue.
      
      * Fix hot-reload for .json solely on server.
      
      * Properly clear cache on hot-reloader.
      
      * Convert .js pages into .json page right inside the plugin.
      
      * Fix gzipping .json pages.
      
      * Remove unwanted json pages cleanup.
      
      * Get rid of deprecated fs.exists for fs.access
      165924b7
    • G
      Release 2.0.0-beta.6 · 56ca84ba
      Guillermo Rauch 提交于
      56ca84ba
    • G
      Update README.md · 5ab71d16
      Guillermo Rauch 提交于
      5ab71d16
    • A
      Implement Router Events (#511) · c890dc35
      Arunoda Susiripala 提交于
      * Move route loading logic to a common place.
      
      * Add router events.
      
      * Add EventEmitter's core API methods.
      
      * Add example app for loading events and docs.
      
      * Fix some typos.
      
      * Get rid of Router.ready()
      
      * Remove events package.
      It's already shipping with webpack.
      
      * Handling aborting properly.
      
      * Expose simple attribute based events listener API.
      Removed the proposed event listener API from the public API.
      
      * Remove error logged when there's an abort error.
      There are many other ways to capture this error.
      So, it doesn't look nice to print this always.
      
      * Change router events to pass only the current URL as arguments.
      
      * Add a section about Cancelled Routes to README.
      c890dc35