summaryrefslogtreecommitdiff
path: root/Gruntfile.js
AgeCommit message (Collapse)Author
2015-07-02for sass, give $icon-font-path conditional value, fixes #453Thomas Park
2015-05-14Add !default flag to each sass variableJay Williams
2015-02-19Using strictMathnielslbeck
Using strictMath to prevent Less from trying to calculate stuff it's shouldn't calculate. Example: The following Less: .small { width: calc(~"100% / 12 * 6 - 40px"); } will output the following CSS: .small { width: -webkit-calc(100% / 12 * 7 - 40px); width: calc(100% / 12 * 7 - 40px); } which is as expected. The calculation can be performed at runtime. But the minified version will be: .small{width:-webkit-calc(18.33333333%);width:calc(18.33333333%)} and that's something else (the absolute part, 40px, shouldn't be converted to something relative). By using strictMath: true both the CSS and the minified CSS will contain the entire calculation.
2014-11-14Add support for SASS/SCSSCorey Sewell
Refactored less files to be more scss friendly * Ensured no variables are used before assignment * Removed interpolated variable usage with similar substitute Added SCSS Grunt tasks * convert_less - Converts theme less files to scss * swatch_scss - Same as original swatch task, but using sass * compress_scss - Same as original compress task, but using sass Added dependencies for SCSS Updated _config.yml so jekyll includes theme _bootswatch.scss and _variables.scss files Added .sass-cache dir to .gitignore
2014-11-13fix src for autoprefixer taskThomas Park
2014-11-13add autoprefixerThomas Park
2014-08-13add paper and sandstone to composer and gruntfileThomas Park
2014-08-01add grunt server and grunt watch, closes #284Thomas Park
2014-07-07add grunt watch task, closes #281Thomas Park
2014-03-24remove shamrockThomas Park
2014-03-17add darkly to siteThomas Park
2014-02-28add shamrockThomas Park
2014-02-28remove cupidThomas Park
2014-02-11More tabs to spaces.XhmikosR
2014-02-05tabs to spacesThomas Park
2014-02-03banners in css files, closes #205Thomas Park
2014-02-02build with less instead of recessThomas Park
2013-12-26TweaksGraham Campbell
2013-11-21yeti: new themeThomas Park
2013-08-17remove superheroThomas Park
2013-08-06added custom starter templateThomas Park
2013-08-06first commit for 3.0.0-rc1Thomas Park
2013-08-06moves v2.3.2 to /2/Thomas Park
2013-05-16Added default grunt taskFrancesco Pontillo
2013-05-15add new theme flatly to siteThomas Park
2013-03-17remove shamrockThomas Park
2013-03-01Added build configuration for shamrock, closes #81Thomas Park
2013-02-28whitespace tweaks in gruntfileThomas Park
2013-02-27remove shamrock from gruntfileThomas Park
2013-02-26CSS are built under the "build" folder, ignored by git. Ready to merge.Francesco Pontillo
2013-02-26Themes built, with responsive and magnification (optional).Francesco Pontillo
2013-02-26Gruntfile.js now considers all of the themes on "grunt build".Francesco Pontillo
package.json with a standard version number (from bootstrap). Removed backup .less files.
2013-02-25Added package.json (for npm) and component.json (for bower).Francesco Pontillo
Building with global variables is successful. TravisCI should build correctly.