18

I'm trying to use yarn for my latest project. How to install bootstrap 4 - libsass libraries using yarn

dragonfly
  • 3,203
  • 7
  • 30
  • 52

6 Answers6

23

Attention:

I just realized a difference between the installations with npm install and yarn.

Here are the two commands I used:

yarn add bootstrap@4.0.0-alpha.6 --dev
npm install bootstrap@4.0.0-alpha.6 --save-dev

The correct/current version of bootstrap 4.0.0-alpha.6 contains this file:

/node_modules/bootstrap/scss/_tags.scss

Installed with npm, this file exists as expected. But installed via yarn, this file is missing. Even if changing bootstrap@^4.0.0-alpha.6 to bootstrap@4.0.0-alpha.6 in package.json didn't fix this issue.

Jonathan Schneider
  • 26,852
  • 13
  • 75
  • 99
TORN
  • 403
  • 4
  • 6
6
yarn add bootstrap@4

installs the latest bootstrap 4 version (4.6.0 at aug/'21)


And you can always use

yarn add your_package@^

To view all the versions that are available

Xavi Montero
  • 9,239
  • 7
  • 57
  • 79
Sam
  • 1,765
  • 11
  • 82
  • 176
2

Just run:

yarn add bootstrap@4.0.0-alpha.6
yarn add gulp-sass --save-dev
Jonathan Schneider
  • 26,852
  • 13
  • 75
  • 99
dragonfly
  • 3,203
  • 7
  • 30
  • 52
1

To find the most current installation instructions, see github repo:

https://github.com/twbs/bootstrap

As of the time of this posting, instructions for installing the latest beta version of Bootstrap v4 via yarn is:

yarn add bootstrap@4.0.0-beta.2
Shafique Jamal
  • 1,550
  • 3
  • 21
  • 45
0

Bootstrap 4 is now in beta, so you can do the following:

yarn add bootstrap@4.0.0-beta
Pierre R-A
  • 509
  • 9
  • 13
-1

here in this https://packagist.org/packages/twbs/bootstrap

yarn add bootstrap@4.0.0-alpha.6
Sumurai8
  • 20,333
  • 11
  • 66
  • 100
rld
  • 2,603
  • 2
  • 25
  • 39