Currently, I am working on a project and encountering an issue with generating the tabs.css file from the provided tabs.scss. Despite trying various options, I have not been able to successfully create the tabs.css. Although I managed to generate tabs.js in the dist/ folder, the creation of tabs.css has been problematic.
I have executed the following commands:
npm install grunt-contrib-watch --save-dev
npm install --save-dev grunt-sass
npm install grunt-contrib-compass --save-dev
npm install grunt-contrib-cssmin --save-dev
However, when I run > grunt default
, I encounter the error below.
Running "compass:tabs" (compass) task
Warning: Couldn't find the compass.bat binary. Make sure it's installed and in your $PATH Use --force to continue.
Aborted due to warnings.
My operating system is Windows 8.1.
I even attempted to convert the tabs.scss to css using an online converter at . However, this resulted in the following error:
file to import not found or unreadable: compass/css3/box-sizing
If anyone can provide assistance in successfully generating the tabs.css from the tabs.scss file, it would be greatly appreciated.