Skip to content

Commit bc960af

Browse files
authored
Merge pull request #1 from Smittyvb/patch-4
Document 3.0.0 release
2 parents e1f906f + a47f077 commit bc960af

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# svelte-loader changelog
22

3+
## 3.0.0
4+
5+
* **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))
6+
```js
7+
const SveltePlugin = require('svelte-loader').plugin; // at top of config
8+
...
9+
module.exports = {
10+
...
11+
plugins: [
12+
...
13+
new SveltePlugin(),
14+
...
15+
]
16+
...
17+
};
18+
```
19+
* Webpack 5 is now supported
20+
* Fix intermittent crashes when using `cache-loader` in front of `svelte-loader` ([#125](https://github.com/sveltejs/svelte-loader/pull/125))
21+
322
## 2.13.6
423

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

0 commit comments

Comments
 (0)