Skip to content

Commit 0681b0f

Browse files
authored
docs: remove lingering fibers dependency recommendations (#1969)
1 parent a6efb61 commit 0681b0f

File tree

25 files changed

+39
-74
lines changed

25 files changed

+39
-74
lines changed

content/en/deployments/github-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ First install it:
6868

6969
::code-group
7070
```bash [Yarn]
71-
yarn add -D push-dir
71+
yarn add --dev push-dir
7272
```
7373
```bash [NPM]
7474
npm install push-dir --save-dev

content/en/docs/3.features/6.configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ To use these pre-processors, we need to install their webpack loaders:
7777

7878
::code-group
7979
```bash [Yarn]
80-
yarn add -D pug pug-plain-loader
81-
yarn add -D sass sass-loader@10
80+
yarn add --dev pug pug-plain-loader
81+
yarn add --dev sass sass-loader@10
8282
```
8383
```bash [NPM]
8484
npm install --save-dev pug pug-plain-loader

content/en/docs/4.directory-structure/2.assets.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,13 @@ In case you want to use `sass` make sure that you have installed `sass` and
6262

6363
::code-group
6464
```bash [Yarn]
65-
yarn add -D sass sass-loader@10 fibers
65+
yarn add --dev sass sass-loader@10
6666
```
6767
```bash [NPM]
68-
npm install --save-dev sass sass-loader@10 fibers
68+
npm install --save-dev sass sass-loader@10
6969
```
7070
::
7171

72-
::alert{type="info"}
73-
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
74-
::
75-
7672
Nuxt will automatically guess the file type by its extension and use the appropriate pre-processor loader for webpack. You will still need to install the required loader if you need to use them.
7773

7874
## Fonts

content/en/docs/4.directory-structure/8.modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ export default {
365365

366366
::code-group
367367
```bash [Yarn]
368-
yarn add -D @nuxtjs/eslint-module
368+
yarn add --dev @nuxtjs/eslint-module
369369
```
370370
```bash [NPM]
371371
npm install --save-dev @nuxtjs/eslint-module

content/en/tutorials/3.going-dark-with-nuxtjs-color-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project
6868

6969
::code-group
7070
```bash [Yarn]
71-
yarn add -D @nuxtjs/color-mode
71+
yarn add --dev @nuxtjs/color-mode
7272
```
7373
```bash [NPM]
7474
npm install --save-dev @nuxtjs/color-mode

content/es/docs/3.features/6.configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ To use these pre-processors, we need to install their webpack loaders:
7777

7878
::code-group
7979
```bash [Yarn]
80-
yarn add -D pug pug-plain-loader
81-
yarn add -D sass sass-loader@10
80+
yarn add --dev pug pug-plain-loader
81+
yarn add --dev sass sass-loader@10
8282
```
8383
```bash [NPM]
8484
npm install --save-dev pug pug-plain-loader

content/es/docs/4.directory-structure/2.assets.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,13 @@ In case you want to use `sass` make sure that you have installed `sass` and
6262

6363
::code-group
6464
```bash [Yarn]
65-
yarn add -D sass sass-loader@10 fibers
65+
yarn add --dev sass sass-loader@10
6666
```
6767
```bash [NPM]
68-
npm install --save-dev sass sass-loader@10 fibers
68+
npm install --save-dev sass sass-loader@10
6969
```
7070
::
7171

72-
::alert{type="info"}
73-
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
74-
::
75-
7672
Nuxt will automatically guess the file type by its extension and use the appropriate pre-processor loader for webpack. You will still need to install the required loader if you need to use them.
7773

7874
## Fonts

content/es/docs/4.directory-structure/8.modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ export default {
365365

366366
::code-group
367367
```bash [Yarn]
368-
yarn add -D @nuxtjs/eslint-module
368+
yarn add --dev @nuxtjs/eslint-module
369369
```
370370
```bash [NPM]
371371
npm install --save-dev @nuxtjs/eslint-module

content/es/docs/5.configuration-glossary/5.configuration-css.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,13 @@ In case you want to use `sass` make sure that you have installed `sass` and `sas
1515

1616
::code-group
1717
```sh [Yarn]
18-
yarn add --dev sass sass-loader@10 fibers
18+
yarn add --dev sass sass-loader@10
1919
```
2020
```sh [NPM]
21-
npm install --save-dev sass sass-loader@10 fibers
21+
npm install --save-dev sass sass-loader@10
2222
```
2323
::
2424

25-
::alert{type="info"}
26-
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
27-
::
28-
2925
- Type: `Array`
3026
- Items: `string`
3127

content/es/tutorials/3.going-dark-with-nuxtjs-color-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project
6868

6969
::code-group
7070
```bash [Yarn]
71-
yarn add -D @nuxtjs/color-mode
71+
yarn add --dev @nuxtjs/color-mode
7272
```
7373
```bash [NPM]
7474
npm install --save-dev @nuxtjs/color-mode

0 commit comments

Comments
 (0)