Recommended tools for Theme Development with SASS [closed]

You can create a WordPress theme development environment in Windows VPS. You’ll need the following tools: Text Editors Aptana Studio 3 Netbeans Notepad++ Local WordPress Development Environments XAMPP InstantWP Debugging Tools Firebug Theme Check Debug Bar Plugin & Theme Development Tools Theme Demo Bar Responsive Select Menu Less & Sass PressTrends Font Awesome

sass :first-child not working

While @Andre is correct that there are issues with pseudo elements and their support, especially in older (IE) browsers, that support is improving all the time. As for your question of, are there any issues, I’d say I’ve not really seen any, although the syntax for the pseudo-element can be a bit tricky, especially when … Read more

Error: ‘node-sass’ version 5.0.0 is incompatible with ^4.0.0

TL;DR npm uninstall node-sass npm install [email protected] Or, if using Yarn (default in newer CRA versions) yarn remove node-sass yarn add [email protected] Edit2: sass-loader v10.0.5 fixes it. The problem is you might not be using it as a project dependency, but more as a dependency of your dependencies. CRA uses a fixed version, angular-cli locks to node-sass v4, and so on. … Read more