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/postcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 57e0211
Choose a base ref
...
head repository: postcss/postcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0fda48a
Choose a head ref
  • 18 commits
  • 32 files changed
  • 5 contributors

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    edcc9b1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1955 from Marukome0743/Marukome0743-patch-1

    chore(docs): improve visual appearance of images in README.md
    ai authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    4b96e7d View commit details
    Browse the repository at this point in the history
  3. Replace indexOf === 0 with startsWith

    It is more readable to call `startsWith` than to call `indexOf` and
    compare the result with zero to determine whether a string starts with a
    given prefix.
    
    `startsWith` is also more efficient as it only compares at the beginning
    of the string, while `indexOf` searches the entire string.
    
    Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
    Juneezee committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    c37da3c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1956 from Juneezee/refactor/replace-indexOf-with-…

    …startsWith
    
    Replace `indexOf === 0` with `startsWith`
    ai authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    ea262f3 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Declare Container.normalize() as a protected method

    This allows subclasses to call and override this method. This PR also
    adds a shared type declaration for the common argument type used to
    add or create new nodes, which eventually gets passed into
    `normalize`.
    nex3 committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    58c50ad View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Add a protected markDirty() method on Node

    This is useful to call from subtypes.
    nex3 committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    d6fa30b View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Fix a few TypeDoc warnings

    nex3 committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    51022c2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1958 from nex3/typedoc

    Fix a few TypeDoc warnings
    ai authored Aug 10, 2024
    Configuration menu
    Copy the full SHA
    13a16b0 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Merge pull request #1957 from nex3/protected-normalize

    Add protected methods
    ai authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    a886628 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Use ReadonlyArray for argument types that aren't modified

    This makes it possible for callers to pass in their own
    `ReadonlyArray`s, and implicitly documents that these arguments aren't
    modified.
    nex3 committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    0cb325a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1961 from nex3/readonly-array

    Use `ReadonlyArray` for argument types that aren't modified
    ai authored Aug 20, 2024
    Configuration menu
    Copy the full SHA
    45a2425 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2024

  1. Pretty CssSyntaxError from onelined (minified) css (#1965)

    * Pretty CssSyntaxError from oneline (minified) css
    
    * - cut minified css in place
    - extend minified css length to 160
    
    * - cut minified css considering block
    varpstar authored Aug 31, 2024
    Configuration menu
    Copy the full SHA
    9e7bdca View commit details
    Browse the repository at this point in the history
  2. Clean up code

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    118ebc9 View commit details
    Browse the repository at this point in the history
  3. Update dependencies

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    fbb6d60 View commit details
    Browse the repository at this point in the history
  4. Try to fix old Node.js tests

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    36950b4 View commit details
    Browse the repository at this point in the history
  5. Sort source code and fix ESLint

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    0975cc2 View commit details
    Browse the repository at this point in the history
  6. Add ESLint to CI

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    cd5b08c View commit details
    Browse the repository at this point in the history
  7. Release 8.4.42 version

    ai committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    0fda48a View commit details
    Browse the repository at this point in the history
Loading