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: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.7.3
Choose a base ref
...
head repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.4
Choose a head ref
  • 13 commits
  • 10 files changed
  • 2 contributors

Commits on Aug 20, 2020

  1. cache node modules in CI

    RobinMalfait committed Aug 20, 2020
    Configuration menu
    Copy the full SHA
    f2e622a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2903811 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    86288cd View commit details
    Browse the repository at this point in the history
  4. Remove unused import

    adamwathan committed Aug 20, 2020
    Configuration menu
    Copy the full SHA
    3839c74 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. Configuration menu
    Copy the full SHA
    3bf6348 View commit details
    Browse the repository at this point in the history
  2. ensure we expect the correct amount of assertions

    It is a bit of noise but it will ensure that we don't have false
    positives. For example when you have the following code:
    
    ```js
    it('should fail', () => {
      return promise.catch((err) => {
        expect(err).toBeInstanceOf(Error)
      });
    });
    ```
    
    You would expect that the test passes because we have an expect in the
    `.catch` block. However if the promise just resolves it means that no
    assertions are executed and the test is considered successful. So in
    this case it will _also_ call but for the incorrect reasons!
    RobinMalfait committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    f15cace View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c79b0b9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2208 from tailwindlabs/cache-node-modules-on-ci

    Cache node modules in CI
    RobinMalfait authored Aug 21, 2020
    Configuration menu
    Copy the full SHA
    8fc7087 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    939346d View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2020

  1. Merge pull request #2211 from tailwindlabs/apply-to-rule-with-multipl…

    …e-selectors
    
    Fix issue where couldn't apply variant classes to rule with multiple selectors
    adamwathan authored Aug 22, 2020
    Configuration menu
    Copy the full SHA
    634a0e6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2225 from tailwindlabs/add-postcss-init-option

    add tailwind -p init option to generate a postcss file
    adamwathan authored Aug 22, 2020
    Configuration menu
    Copy the full SHA
    ed3edf9 View commit details
    Browse the repository at this point in the history
  3. Tweak help text

    adamwathan committed Aug 22, 2020
    1 Configuration menu
    Copy the full SHA
    1bc2fed View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2020

  1. 1.7.4

    adamwathan committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    b2b9424 View commit details
    Browse the repository at this point in the history
Loading