Skip to content

Commit

Permalink
- Change all >= to + for consistency accross all Vue documentatio…
Browse files Browse the repository at this point in the history
…n. (#889)
  • Loading branch information
MachinisteWeb authored and kazupon committed Jul 29, 2017
1 parent 8067090 commit 746601b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/en/configurations/advanced.md
Expand Up @@ -10,7 +10,7 @@ Sometimes you may want to:

To do that, specify the `loaders` option for `vue-loader`:

> Note that `preLoaders` and `postLoaders` are only supported in >=10.3.0
> Note that `preLoaders` and `postLoaders` are only supported in 10.3.0+
### Webpack 2.x

Expand Down
6 changes: 3 additions & 3 deletions docs/en/options.md
Expand Up @@ -64,14 +64,14 @@ module.exports = {
### preLoaders

- type: `{ [lang: string]: string }`
- only supported in >=10.3.0
- only supported in 10.3.0+

The config format is the same as `loaders`, but `preLoaders` are applied to corresponding language blocks before the default loaders. You can use this to pre-process language blocks - a common use case would be build-time i18n.

### postLoaders

- type: `{ [lang: string]: string }`
- only supported in >=10.3.0
- only supported in 10.3.0+

The config format is the same as `loaders`, but `postLoaders` are applied after the default loaders. You can use this to post-process language blocks. However note that this is a bit more complicated:

Expand All @@ -81,7 +81,7 @@ module.exports = {

### postcss

> Note: in >=11.0.0 it is recommended to use a PostCSS config file instead. [The usage is the same as `postcss-loader`](https://github.com/postcss/postcss-loader#usage).
> Note: in 11.0.0+ it is recommended to use a PostCSS config file instead. [The usage is the same as `postcss-loader`](https://github.com/postcss/postcss-loader#usage).
- type: `Array` or `Function` or `Object`

Expand Down

0 comments on commit 746601b

Please sign in to comment.