Releases: vuejs/vue-loader
Releases · vuejs/vue-loader
v7.4.0
v7.3.0
v7.2.0
- Downgraded
babel-runtime
peer dependency to 5.x due to:- Bugs in
babel-runtime
6.x - All babel plugins still depend on runtime 5.x, having a top-level 6.x dependency forces duplicate copies of runtime 5.x in every plugin, resulting in the installation using much larger disk space and the build booting much slower.
- Bugs in
- More reliable hot-reload for nested child components.
7.1.1
7.1.0
0.7.0
6.0.5
- Users can now provide their own PostCSS plugins: https://github.com/vuejs/vue-loader#postcss
0.6.2
6.0.1
6.0.0
New
- Styles are now auto-prefixed by default.
Changed
-
Custom loader configuration now uses a
vue
block in your webpack config:module.exports = { // entry, output... module: { loaders: [{ test: /\.vue$/, loader: 'vue' }] }, vue: { // configure autoprefixer autoprefixer: { browsers: ['last 2 versions'] }, // custom loaders, this replaces the old vue.withLoaders({}) loaders: { js: 'coffee' } }, devtool: '#source-map' }