-
5.0.0
- Make
defaultTemplate
render<div id="root"></div>
into the body by default as a mount point for React. See #89 for reasoning.
- Make
-
4.0.0
- Remove
relative
option from template in lieu of a more flexiblepublicPath
option.
- Remove
-
3.1.0
- Add support for the following loaders:
coffee cjsx typescript livescript
.
- Add support for the following loaders:
-
3.0.0
- Remove
peerDependencies
and make them optional. See the optional dependencies section in the README for new installation instructions. #26 #80
- Remove
-
2.14.1
- Only use react-hot-loader if specified by devServer
hot
option
- Only use react-hot-loader if specified by devServer
-
2.14.0
- Add https support
-
2.13.2
- Pin dependencies (setup Greekeeper.io)
-
2.13.1
- Replace
autoprefixer-core
withautoprefixer
- Update
examples/
dependencies
- Replace
-
2.13.0
-
2.12.4
- Update
extract-text-webpack-plugin
and other dependencies - Get
npm test
passing forstandard
linting
- Update
-
2.12.3
- Add
react
to peer deps
- Add
-
2.12.2
- Fix
react-hot-loader
is installed check
- Fix
-
2.12.1
- Don't assume
process.argv[1]
exists. This can happen if running vianode -p
, thanks @eins78.
- Don't assume
-
2.12.0
- Don't force install of React or React Hot-Loader only use them and other optional installs if installed. Thanks @FWeinb
-
2.11.0
- Add ability to pass
metaTags
object as adefaultTempate
option for easily adding<meta>
tags.
- Add ability to pass
-
2.10.0
- Add
sass-loader
for.scss
and ``sass` files
- Add
-
2.9.0
- Allow globs for
clearBeforeBuild
. - Expose webpack
stats
object to context - Expose parsed
package.json
object tohtml
function context argument. - Set
out
folder ascontentBase
for the dev server.
- Allow globs for
-
2.8.1
- Fix typo in
examples/just-assets-no-html/README.md
- add documentation for relative links in html
- Fix typo in
-
2.8.0
- add
serveCustomHtmlInDev
as an explicit option - properly document new option and
isDev
in html function
- add
-
2.7.0
- Expose
isDev
flag tohtml
function context - Document
replace
option in readme.
- Expose
-
2.6.1
- Fix less filename test when in production mode
- Add documentation about using html function's css context and cssFilename in production mode
-
2.6.0
- Allow
devServer
options to be passed in
- Allow
-
2.5.0
- Use passed in
urlLoaderLimit
- Add default url loader for images
- Use passed in
-
2.4.0 Resolve
.jsx
extension -
2.3.0 configure
isDev
default automatically based on whether the command used containswebpack-dev-server
or not (still respects explicitly configured, so not a breaking change)- add
clearBeforeBuild
option to clear build folder first. - both the above changes allow an app to share configs because you're not having to clear the build dir, or set environment variables two different ways for different platforms (a.k.a. better windows support).
- doc fixes/improvements
- add
-
2.2.2 use
process.cwd()
overprocess.env.PWD
to find root. -
2.2.1 include
json-loader
by default. -
2.2.0 use
autoprefixer-core
andpostcss-loader
to add autoprefixing to all configured style loaders- don't resolve .styl extensions
-
2.1.0 pre-configure
.jade
and.less
loaders as optional installs.- add option for
urlLoaderLimit
- add option for
-
2.0.0 instead of including our own pre-configured dev server:
hjs-dev-server
you can now just usewebpack-dev-server
in your npmscripts
and it gets configured viadevServer
property of config.- much more complete documentation
- support for passing options to
defaultTemplate()
function - simplified/unified configuration
- support for setting global
hostname
(see above) - now includes main babel package by default
- add warnings/instructions about npm
3.x.x
's handling of peer dependencies