In my project, I utilize SCSS and would like to incorporate Bootstrap.scss in order to create a single class that inherits multiple Bootstrap classes. For instance:
.myButtonClass { @col-xs-12; @col-sm-6 }
This way, I can replace class="col-xs-12 col-sm-6"
with class="myButtonClass"
for consistency across multiple buttons. Although I have the Yarn extension installed in VS2017 and can see the Restore Packages (Yarn) option in my GUI, I am unable to find Yarn in the VS command prompt to install the Bootstrap SCSS package.
My project is a .NET Framework WebAPI project, not a Node.js project. Unfortunately, there seems to be no clear examples on how to integrate JavaScript packages in a basic .NET Framework WebAPI web application.
Does this mean that it is not possible to use these types of JS packages?