Select the Version of Bootstrap-Sass NES

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 version 3.x to ensure compatibility with different Sass compilers. Here's how you can determine which version is right for your application.

Version 3.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.

Version 3.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.

How To Check Which Compiler You Are Using

  1. Check the dependencies or devDependencies portion of your application's package.json:
    • If you see node-sass, you should use Bootstrap-Sass NES v3.4.1.
    • If you see sass (or dart-sass), use Bootstrap-Sass NES v3.4.3.
  2. 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 are unsure which version to choose, 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: