Which Version of Bootstrap-Sass NES Do I Need?
How to determine which version of Bootstrap-Sass NES
Choosing the Right Version of Bootstrap-Sass NES
HeroDevs offers two separate versions of Bootstrap-Sass NES v3 to ensure compatibility with different Sass compilers. Here's how you can determine which version is right for your application.
Version v3.4.1
Use this if your project relies on node-sass
(LibSass).
- Typically used in older projects or environments that require Node.js-based Sass compilation.
Full version format: 3.4.1-bootstrap-sass-3.4.x
Version v3.4.3
Use this if your project supports sass
(Dart Sass), the modern and actively maintained Sass compiler.
- Typically found in newer projects and environments.
Full version format: 3.4.3-bootstrap-sass-3.4.x
How To Check Which Compiler You Are Using:
- Check the
dependencies
ordevDependencies
portion of your application'spackage.json
:
- If you see
node-sass
, you should use Bootstrap-Sass NES v3.4.1. - If you see
sass
(ordart-sass
), use Bootstrap-Sass NES v3.4.3.
- Command-line Check:
Run this in the root of your project directory:
npm list node-sass sass
This should list which Sass compiler is installed.
➜: npm list node-sass sass
your-app@1.0.0 /dev/your-app/
└── node-sass@4.14.1
# or
your-app@1.0.0 /dev/your-app/
└── sass@1.84.0
Need Help?
If you're unsure which version to choose, feel free to reach out to our support team!
More Information
If you would like to research more about the differences between Bootstrap-Sass patch-level versions and the reasons they exist, you can checkout these resources: