Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: postcss/autoprefixer
base: 7.1.3
Choose a base ref
...
head repository: postcss/autoprefixer
compare: 7.1.4
Choose a head ref
  • 14 commits
  • 16 files changed
  • 2 contributors

Commits on Sep 2, 2017

  1. [Refactor] Removes redundant else structures (#886)

    * [Refactor] Removes redundant else structures
    
    Removes the else after the continue (inside a for loop).
    Result: less indentation, less code, more readable
    
    * Update resolution.js
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    111c1b8 View commit details
    Browse the repository at this point in the history
  2. [Refactor] Removes redundant else structures (#887)

    Uses early returns (continue inside loops) so else statements are made redundant.
    Result: less indentation, less code, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    efc12c8 View commit details
    Browse the repository at this point in the history
  3. [Refactor] Removes redundant else structures (#888)

    Changes if/else structure (flips it) so early returns can be used and else can be removed.
    Result: more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    aafd9ee View commit details
    Browse the repository at this point in the history
  4. [Refactor] Removes redundant else structures (#890)

    Removes redundant elses after early returns.
    Result: less indentation, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    877fde7 View commit details
    Browse the repository at this point in the history
  5. [Refactor] Removes redundant else structures (#893)

    Removes redundant elses after early returns.
    Result: less indentation, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    1510c6d View commit details
    Browse the repository at this point in the history
  6. [Refactor] Removes redundant else structures (#892)

    Uses early returns (and continues inside loops) so else statements are made redundant.
    Result: less indentation, less code, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    d92b5e8 View commit details
    Browse the repository at this point in the history
  7. [Refactor] Removes redundant else structures (#891)

    Removes redundant elses after early returns.
    Result: less indentation, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    fb68a0b View commit details
    Browse the repository at this point in the history
  8. [Refactor] Removes redundant else structures (#889)

    * [Refactor] Removes redundant else structures
    
    This one has a bit more refactoring going on, so you will need a good test run n this. Or drop it, if you don't think it is worth it :)
    
    It would clean stuff up a bit to extract a large part of the code in the for loop to a separate getItem method.
    That way you can do early returns more easily and only need one result.push(item);
    
    Something like:
    ``` 
                    item = this.getItem(propPrefix, decl);
                    result.push(item);
    ```
    
    * Update value.js
    
    * Update value.js
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    f45c1e6 View commit details
    Browse the repository at this point in the history
  9. [Refactor] Removes redundant else structures (#895)

    Removes redundant elses after early returns.
    Result: less indentation, more readable, easier to follow
    regularlabs authored and ai committed Sep 2, 2017
    Copy the full SHA
    c85dcea View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2017

  1. Update dependencies

    ai committed Sep 7, 2017
    Copy the full SHA
    27e9fb0 View commit details
    Browse the repository at this point in the history
  2. 2
    Copy the full SHA
    46a2d41 View commit details
    Browse the repository at this point in the history
  3. Allow to use image-set in cursor

    ai committed Sep 7, 2017
    Copy the full SHA
    c6a6237 View commit details
    Browse the repository at this point in the history
  4. Reduce Size Limit quota

    ai committed Sep 7, 2017
    Copy the full SHA
    5968ea5 View commit details
    Browse the repository at this point in the history
  5. Release 7.1.4 version

    ai committed Sep 7, 2017
    Copy the full SHA
    c6eb543 View commit details
    Browse the repository at this point in the history