0
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jul 17, 2024 — Jul 17, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge pull request #481 from xzyfer/feat/maps More... almost 11 years ago
Show currentDir when outputting not found error More... almost 11 years ago
Merge pull request #27 from item4/bugfix/support-partial More... almost 11 years ago
Version bump [ci skip] More... almost 11 years ago
change from docstring to comment More... almost 11 years ago
add test case More... almost 11 years ago
add behavior if filename start with '_' More... almost 11 years ago
Interface: Make use of C99's stdbool. Interface change: Alert upstreams! More... almost 11 years ago
Add debug code to check for sources problems at the root of the cause. More... almost 11 years ago
We found an example of a case where the clearSources fix from before wasn't sufficient. Due to the recursive nature of the algorithm, we were setting sources correctly, but were getting extra sources in trim. This caused the trim behavior to differ. The fix is to clone the extended selector fully, which will prevent sources from being added to the one in our extension subset map. To do this, I implemented a cloneFully on Complex_Selector and a clone on Compound_Selector. More... almost 11 years ago
Updates to isPrintable based on test failures. More... almost 11 years ago
Merge remote-tracking branch 'origin/feature/extend-support' into feature/printable-refactor More... almost 11 years ago
Updates README.md for perl-libsass transition to sass org More... almost 11 years ago
Reverse checks for safer code path More... almost 11 years ago
Merge pull request #26 from frewsxcv/patch-1 More... almost 11 years ago
Removes left/right pseudo selector recognition More... almost 11 years ago
Test on PyPy3 More... almost 11 years ago
Put back in the hoistable check since it fixes a handful of diffs in our sass. More... almost 11 years ago
Rolling back part of the shouldExtendBlock optimization from earlier. The optimization was too aggressive, and it started breaking a media query test. The new code is much more conservative in when it will skip performing the extend. It will only skip a block that has no statements in it - excluding other rulesets, which will get extended themselves. More... almost 11 years ago
Fixes file handle closing on file reading More... almost 11 years ago
First pass at refactor More... almost 11 years ago
Implement a better fix for the missing output due to our shouldExtendBlock optimization. Revert shouldExtendBlock to what it was, but update the output step to do the right thing if it finds a block within a block. More... almost 11 years ago
Renamed containsAnyExtendableStatements to shouldExtendBlock. Updated shouldExtendBlock to always extend rulesets with placeholders. That's what they're there for. More... almost 11 years ago
Release 0.5.1 More... almost 11 years ago
Remove original readme to ignore [ci skip] More... almost 11 years ago
Fix recursive subdirectory build bug More... almost 11 years ago
Merge remote-tracking branch 'origin/feature/extend-support-parser-fix' into feature/perf-integration More... almost 11 years ago
Let the caller of extendSelectorList know if we extended something. That way, they can avoid an expensive parser call if nothing has changed. The check now is pretty simplistic. It will return false if we didn't do anything in extendSelectorList. We could potentially run the extend algorithm and get the same result and mark that as extendedSomething, but I'd rather not filter out legitimite cases, so let's say conservative. More... almost 11 years ago
Updated to only try and extend things that have content and will therefore be output later. Added some new debugging prints to help track down recursion issues. Update Compound_Selector printing to match ruby sass. More... almost 11 years ago
Refactor the code a little to get parity with the ruby sass iteration. In doing so, I noticed a bug where we were putting the wrong thing in the seen set. When the code was written, the right thing didn't exist yet. More... almost 11 years ago