Skip to content

Commit ccacaa9

Browse files
committed
Update CHANGELOG
1 parent cb7187d commit ccacaa9

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
---------
33

4+
### 6.0.3
5+
6+
- Fix regression with empty files [#398](https://github.com/webpack-contrib/sass-loader/pull/398)
7+
- Reduce npm package size by using the [files](https://docs.npmjs.com/files/package.json#files) property in the `package.json`
8+
49
### 6.0.2
510

611
- Update dependencies [#383](https://github.com/webpack-contrib/sass-loader/pull/383)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<p>Looking for the webpack 1 loader? Check out the <a href="https://github.com/webpack-contrib/sass-loader/tree/archive/webpack-1">archive/webpack-1 branch</a>.</p>
2020
</div>
2121

22-
## Install
22+
<h2 align="center">Install</h2>
2323

2424
```bash
2525
npm install sass-loader node-sass webpack --save-dev
@@ -28,7 +28,7 @@ npm install sass-loader node-sass webpack --save-dev
2828
The sass-loader requires [node-sass](https://github.com/sass/node-sass) and [webpack](https://github.comwebpack)
2929
as [`peerDependency`](https://docs.npmjs.com/files/package.json#peerdependencies). Thus you are able to control the versions accurately.
3030

31-
## Examples
31+
<h2 align="center">Examples</h2>
3232

3333
Chain the sass-loader with the [css-loader](https://github.com/webpack-contrib/css-loader) and the [style-loader](https://github.com/webpack-contrib/style-loader) to immediately apply all styles to the DOM.
3434

@@ -79,7 +79,7 @@ See [node-sass](https://github.com/andrew/node-sass) for all available Sass opti
7979

8080
### In production
8181

82-
Usually, it's recommended to extract the stylesheets into a dedicated file in production using the [ExtractTextPlugin](https://github.com/webpack-contrib/extract-text-webpack-plugin). This way your styles are not dependent on JavaScript:
82+
Usually, it's recommended to extract the style sheets into a dedicated file in production using the [ExtractTextPlugin](https://github.com/webpack-contrib/extract-text-webpack-plugin). This way your styles are not dependent on JavaScript:
8383

8484
```js
8585
const ExtractTextPlugin = require("extract-text-webpack-plugin");
@@ -111,7 +111,7 @@ module.exports = {
111111
};
112112
```
113113

114-
## Usage
114+
<h2 align="center">Usage</h2>
115115

116116
### Imports
117117

@@ -186,9 +186,9 @@ If you want to prepend Sass code before the actual entry file, you can set the `
186186
}
187187
```
188188

189-
***Please note:** Since you're injecting code, this will break the source mappings in your entry file. Often there's a simpler solution than this, like multiple Sass entry files.**
189+
**Please note:** Since you're injecting code, this will break the source mappings in your entry file. Often there's a simpler solution than this, like multiple Sass entry files.
190190

191-
## Maintainers
191+
<h2 align="center">Maintainers</h2>
192192

193193
<table>
194194
<tbody>
@@ -213,7 +213,7 @@ If you want to prepend Sass code before the actual entry file, you can set the `
213213
</table>
214214

215215

216-
## License
216+
<h2 align="center">License</h2>
217217

218218
[MIT](http://www.opensource.org/licenses/mit-license.php)
219219

0 commit comments

Comments
 (0)