Skip to content

Releases: iansinnott/app-time

v0.10.1

15 Jun 15:50
Compare
Choose a tag to compare
  • Add eject script (see README)
  • Updated README with info on eject and setup

v0.7.0

24 Jan 08:13
Compare
Choose a tag to compare

Changes:

  • Add support for a separate vendor.js in prod that can be cached
    separately from the main app.
  • Add support for the Dll plugin, which allows super speedy rebuilds.

v0.6.0

20 Jan 06:49
Compare
Choose a tag to compare

Changes:

Added ReactStaticPlugin function to the second arg in the configuration function. This allows:

  • Configurable entrypoint. Previously you could configure the webpack entry but the static plugin could not be configured to look for routes in a new place.
  • Redux. Allowing configuration of the static plugin (re)allows the use of redux because you can specify the reduxStore option.

See example:

module.exports = (config, apptime) => ({
  ...config, // Base config

  ...apptime.ReactStaticPlugin({
    routes: './client/routes.js',
    reduxStore: './client/redux/store.js', // Add redux store
    template: './template.js',
  }),
});

v0.5.0

05 Jan 23:49
Compare
Choose a tag to compare

Changes:

  • Add asset fingerprinting using the webpack-manifest-plugin. (i.e. app.7989879.js).

This is a big win for simple cache busting since the chunkhash will change whenever the underlying source changes.

v0.4.0

05 Jan 01:36
Compare
Choose a tag to compare

Changes:

  • Add webpack-bundle-analyzer plugin and build --analyze flag
  • Add webpack-dashboard plugin and start --dashboard flag

v0.3.1

04 Jan 18:29
Compare
Choose a tag to compare

Changes:

  • Add core-js polyfill by default

v0.3.0

04 Jan 09:03
Compare
Choose a tag to compare

Changes:

  • Allow custom configuration through apptime.config.dev.js and apptime.config.prod.js
  • Remove normalize.css from default entry point since it can now be specified in one of the above mentioned files

v0.2.4

29 Dec 08:41
Compare
Choose a tag to compare

Changes:

  • Now complete with two whole scripts! build, start

See the readme for details.

v0.1.0

28 Dec 20:58
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

Changes:

  • Added app-time build command