Skip to content

Commit

Permalink
Document 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
syvb authored and non25 committed Jan 12, 2021
1 parent d9169a0 commit 0e4f941
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# svelte-loader changelog

## 3.0.0

* **Breaking change**: if `emitCss` is enabled, you have to add a `SveltePlugin` to your `webpack.config.js` like so: ([#146](https://github.com/sveltejs/svelte-loader/pull/146))
```js
const SveltePlugin = require('svelte-loader').plugin; // at top of config
...
module.exports = {
...
plugins: [
...
new SveltePlugin(),
...
]
...
};
```
* Webpack 5 is now supported
* Fix intermittent crashes when using `cache-loader` in front of `svelte-loader` ([#125](https://github.com/sveltejs/svelte-loader/pull/125))

## 2.13.6

* Check whether the filesystem implements `purge` before calling it ([#81](https://github.com/sveltejs/svelte-loader/pull/81))
Expand Down

0 comments on commit 0e4f941

Please sign in to comment.