Skip to content

Commit

Permalink
docs: remove lingering fibers dependency recommendations (#1969)
Browse files Browse the repository at this point in the history
  • Loading branch information
duboiss authored Dec 20, 2021
1 parent a6efb61 commit 0681b0f
Show file tree
Hide file tree
Showing 25 changed files with 39 additions and 74 deletions.
2 changes: 1 addition & 1 deletion content/en/deployments/github-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First install it:

::code-group
```bash [Yarn]
yarn add -D push-dir
yarn add --dev push-dir
```
```bash [NPM]
npm install push-dir --save-dev
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/3.features/6.configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ To use these pre-processors, we need to install their webpack loaders:

::code-group
```bash [Yarn]
yarn add -D pug pug-plain-loader
yarn add -D sass sass-loader@10
yarn add --dev pug pug-plain-loader
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev pug pug-plain-loader
Expand Down
8 changes: 2 additions & 6 deletions content/en/docs/4.directory-structure/2.assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,13 @@ In case you want to use `sass` make sure that you have installed `sass` and

::code-group
```bash [Yarn]
yarn add -D sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
::

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.

## Fonts
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/4.directory-structure/8.modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export default {

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/eslint-module
yarn add --dev @nuxtjs/eslint-module
```
```bash [NPM]
npm install --save-dev @nuxtjs/eslint-module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/color-mode
yarn add --dev @nuxtjs/color-mode
```
```bash [NPM]
npm install --save-dev @nuxtjs/color-mode
Expand Down
4 changes: 2 additions & 2 deletions content/es/docs/3.features/6.configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ To use these pre-processors, we need to install their webpack loaders:

::code-group
```bash [Yarn]
yarn add -D pug pug-plain-loader
yarn add -D sass sass-loader@10
yarn add --dev pug pug-plain-loader
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev pug pug-plain-loader
Expand Down
8 changes: 2 additions & 6 deletions content/es/docs/4.directory-structure/2.assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,13 @@ In case you want to use `sass` make sure that you have installed `sass` and

::code-group
```bash [Yarn]
yarn add -D sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
::

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.

## Fonts
Expand Down
2 changes: 1 addition & 1 deletion content/es/docs/4.directory-structure/8.modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export default {

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/eslint-module
yarn add --dev @nuxtjs/eslint-module
```
```bash [NPM]
npm install --save-dev @nuxtjs/eslint-module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ In case you want to use `sass` make sure that you have installed `sass` and `sas

::code-group
```sh [Yarn]
yarn add --dev sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```sh [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
::

- Type: `Array`
- Items: `string`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/color-mode
yarn add --dev @nuxtjs/color-mode
```
```bash [NPM]
npm install --save-dev @nuxtjs/color-mode
Expand Down
4 changes: 2 additions & 2 deletions content/fr/docs/3.features/6.configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Pour utiliser ces pré-processeurs, nous avons besoin d'installer leurs loaders

::code-group
```bash [Yarn]
yarn add -D pug pug-plain-loader
yarn add -D sass sass-loader@10
yarn add --dev pug pug-plain-loader
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev pug pug-plain-loader
Expand Down
7 changes: 2 additions & 5 deletions content/fr/docs/4.directory-structure/2.assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,12 @@ Dans le cas où l'on veut utiliser `SASS`, il faut bien faire attention à insta
::

::code-group

```bash [Yarn]
yarn add -D sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```

```bash [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```

::

Nuxt va automatiquement deviner le type de fichier grâce à son extension et utiliser le loader webpack approprié pour le pré-processeur. Nous aurons cependant besoin d'installer le loader requis si nous avons besoin de l'utiliser.
Expand Down
2 changes: 1 addition & 1 deletion content/fr/docs/4.directory-structure/8.modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export default {
::code-group

```bash [Yarn]
yarn add -D @nuxtjs/eslint-module
yarn add --dev @nuxtjs/eslint-module
```

```bash [NPM]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ Si on veut utiliser `SASS`, il faut bien faire attention à avoir les packages `

::code-group
```sh [Yarn]
yarn add --dev sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```sh [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Compilation synchrone avec `sass` (augmentation de la vitesse 2x) [est activée automatiquement] (https://github.com/webpack-contrib/sass-loader) lorsque `fibers` est installé.
::

- Type: `Array`
- Items: `string`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/color-mode
yarn add --dev @nuxtjs/color-mode
```
```bash [NPM]
npm install --save-dev @nuxtjs/color-mode
Expand Down
4 changes: 2 additions & 2 deletions content/ja/docs/3.features/6.configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export default {

::code-group
```bash [Yarn]
yarn add -D pug pug-plain-loader
yarn add -D sass sass-loader@10
yarn add --dev pug pug-plain-loader
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev pug pug-plain-loader
Expand Down
8 changes: 2 additions & 6 deletions content/ja/docs/4.directory-structure/2.assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,13 @@ export default {

::code-group
```bash [Yarn]
yarn add -D sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
`fibers` がインストールされている場合、 `sass` の同期コンパイル(2 倍速)が [自動的に有効になります](https://github.com/webpack-contrib/sass-loader)
::

Nuxt は拡張子からファイルの種類を自動的に推測して webpack に適したプリプロセッサローダーを使用します。それでも必要な場合は、必要なローダーをインストールする必要があります。

## フォント
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/4.directory-structure/8.modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export default {

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/eslint-module
yarn add --dev @nuxtjs/eslint-module
```
```bash [NPM]
npm install --save-dev @nuxtjs/eslint-module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ Nuxt ではグローバルに適用したい(すべてのページにインク

::code-group
```sh [Yarn]
yarn add --dev sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```sh [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
`fibers` がインストールされている場合、 `sass` の同期コンパイル(2 倍速)が [自動的に有効になります](https://github.com/webpack-contrib/sass-loader)
::

- 型: `Array`
- 要素: `string`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/color-mode
yarn add --dev @nuxtjs/color-mode
```
```bash [NPM]
npm install --save-dev @nuxtjs/color-mode
Expand Down
4 changes: 2 additions & 2 deletions content/pt/docs/3.features/6.configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ To use these pre-processors, we need to install their webpack loaders:

::code-group
```bash [Yarn]
yarn add -D pug pug-plain-loader
yarn add -D sass sass-loader@10
yarn add --dev pug pug-plain-loader
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev pug pug-plain-loader
Expand Down
8 changes: 2 additions & 6 deletions content/pt/docs/4.directory-structure/2.assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,13 @@ In case you want to use `sass` make sure that you have installed `sass` and

::code-group
```bash [Yarn]
yarn add -D sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```bash [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
::

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.

## Fonts
Expand Down
2 changes: 1 addition & 1 deletion content/pt/docs/4.directory-structure/8.modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export default {

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/eslint-module
yarn add --dev @nuxtjs/eslint-module
```
```bash [NPM]
npm install --save-dev @nuxtjs/eslint-module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ In case you want to use `sass` make sure that you have installed `sass` and `sas

::code-group
```sh [Yarn]
yarn add --dev sass sass-loader@10 fibers
yarn add --dev sass sass-loader@10
```
```sh [NPM]
npm install --save-dev sass sass-loader@10 fibers
npm install --save-dev sass sass-loader@10
```
::

::alert{type="info"}
Synchronous compilation with `sass` (2x speed increase) [is enabled automatically](https://github.com/webpack-contrib/sass-loader) when `fibers` is installed.
::

- Type: `Array`
- Items: `string`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First of all you need to install the module as a dependency to your Nuxt project

::code-group
```bash [Yarn]
yarn add -D @nuxtjs/color-mode
yarn add --dev @nuxtjs/color-mode
```
```bash [NPM]
npm install --save-dev @nuxtjs/color-mode
Expand Down

0 comments on commit 0681b0f

Please sign in to comment.