Kirby Webpack Versions Save

:muscle: A Kirby CMS starter-kit with modern frontend tools

0.7.0

6 years ago
  • Fix bad color formatting on php logs from the built in server
  • Clear php log on each npm start
  • Remove paths.src / paths.build

In the main.config.js, entries now needs to be declared relative to the root of your project, like this:

const entries = {
  'src/index.js': 'www/assets/bundle.js',
  'src/index.less': 'www/assets/bundle.css'
}

This allows to quickly split your entry files between multiples folders, like a javascript and a style folder

⚠️ Files outside the public folder (by default /www) will not be bundled in development - they can't be served by the devserver.

0.6.2

6 years ago
  • If you are on your site, www/content will now trigger browsersync reload function.
    • If you are on the panel, the reload will not be triggered

0.6.1

6 years ago
  • Update all dependencies
  • If you import less/sass/styl files from a js sourcefile, this commit avoid extract-text-plugin to override the destination with the bundled css from the imports.

0.6.0

6 years ago
  • Remove the url rewriting middleware. kirby-webpack now only relies on HTTP_X_FORWARDED_HOST / HTTP_X_FORWARDED_FOR headers to setup a proper url root for kirby when serving from browser sync.
  • Theses changes should allow to proxy from a https server
  • Add a default favicon.ico to remove a 404/500 console error depending on the environment

0.5.3

6 years ago
  • Add default PHP short tags support for the built-in server
    • ⚠️ Using short tags is not recommended. They are disabled by default on PHP 7.

0.5.2

6 years ago
  • Increase upload_max_filesize and post_max_size for the built-in php server. Before this, you couldn't upload big files from the built-in php server handled by kirby-webpack.

0.5.1

6 years ago
  • Fix node-tail not logging everything

0.5.0

6 years ago
  • Add a proxy option in main.config.js : now you can use your own custom local environment
  • Fix a kirby package manager error when new packages were installed
  • Fix bad host rewriting
  • Better comments

0.4.0

6 years ago

Initial release of kirby-webpack