Skip to content

Commit 746601b

Browse files
MachinisteWebkazupon
authored andcommitted
- Change all >= to + for consistency accross all Vue documentation. (#889)
1 parent 8067090 commit 746601b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/en/configurations/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Sometimes you may want to:
1010

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

13-
> Note that `preLoaders` and `postLoaders` are only supported in >=10.3.0
13+
> Note that `preLoaders` and `postLoaders` are only supported in 10.3.0+
1414
1515
### Webpack 2.x
1616

docs/en/options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ module.exports = {
6464
### preLoaders
6565

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

6969
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.
7070

7171
### postLoaders
7272

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

7676
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:
7777

@@ -81,7 +81,7 @@ module.exports = {
8181

8282
### postcss
8383

84-
> 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).
84+
> 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).
8585
8686
- type: `Array` or `Function` or `Object`
8787

0 commit comments

Comments
 (0)