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: stylelint/stylelint-config-standard
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 33.0.0
Choose a base ref
...
head repository: stylelint/stylelint-config-standard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 34.0.0
Choose a head ref
  • 7 commits
  • 4 files changed
  • 4 contributors

Commits on Apr 23, 2023

  1. Update deps (#290)

    ybiquitous authored Apr 23, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b3317aa View commit details

Commits on Apr 25, 2023

  1. Bump yaml from 2.2.1 to 2.2.2 (#291)

    Bumps [yaml](https://github.com/eemeli/yaml) from 2.2.1 to 2.2.2.
    - [Release notes](https://github.com/eemeli/yaml/releases)
    - [Commits](eemeli/yaml@v2.2.1...v2.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: yaml
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 25, 2023
    Copy the full SHA
    5aa5dd5 View commit details

Commits on Jun 17, 2023

  1. Update deps (#293)

    ybiquitous authored Jun 17, 2023
    Copy the full SHA
    dc2e756 View commit details

Commits on Jul 4, 2023

  1. Add engines.node field to package.json (#295)

    The `engines.node` field should be the same as `stylelint`'s `engines.node` (peer dependency).
    ybiquitous authored Jul 4, 2023
    Copy the full SHA
    b6f1895 View commit details
  2. Bump got and np (#294)

    Bumps [got](https://github.com/sindresorhus/got) to 11.8.6 and updates ancestor dependency [np](https://github.com/sindresorhus/np). These dependencies need to be updated together.
    
    
    Updates `got` from 9.6.0 to 11.8.6
    - [Release notes](https://github.com/sindresorhus/got/releases)
    - [Commits](sindresorhus/got@v9.6.0...v11.8.6)
    
    Updates `np` from 7.7.0 to 8.0.4
    - [Release notes](https://github.com/sindresorhus/np/releases)
    - [Commits](sindresorhus/np@v7.7.0...v8.0.4)
    
    ---
    updated-dependencies:
    - dependency-name: got
      dependency-type: indirect
    - dependency-name: np
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 4, 2023
    Copy the full SHA
    9a68907 View commit details
  3. Prepare 34.0.0 (#296)

    - Removed: `stylelint` less than `15.10.0` from peer dependencies
    - Changed: updated to [`stylelint-config-recommended@13.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/13.0.0).
    - updated test introduced in #295
    
    ---------
    
    Co-authored-by: Richard Hallows <jeddy3@users.noreply.github.com>
    mattxwang and jeddy3 authored Jul 4, 2023
    Copy the full SHA
    da11594 View commit details
  4. 34.0.0

    mattxwang committed Jul 4, 2023
    Copy the full SHA
    3918f35 View commit details
Showing with 5,946 additions and 12,959 deletions.
  1. +7 −2 CHANGELOG.md
  2. +20 −0 __tests__/engines.test.js
  3. +5,908 −12,949 package-lock.json
  4. +11 −8 package.json
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

# 33.0.0
## 34.0.0

- Removed: `stylelint` less than `15.10.0` from peer dependencies
- Changed: updated to [`stylelint-config-recommended@13.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/13.0.0).

## 33.0.0

- Removed: `stylelint` less than `15.5.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@12.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/12.0.0).
- Changed: restored `declaration-block-single-line-max-declarations` removed on `30.0.0`.

# 32.0.0
## 32.0.0

- Removed: `stylelint` less than `15.4.0` from peer dependencies.
- Added: `media-feature-range-notation: "context"` rule.
20 changes: 20 additions & 0 deletions __tests__/engines.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
'use strict';

const { execFileSync } = require('child_process');
const pkg = require('../package.json');

describe('engines.node', () => {
it("is the same as stylelint's one", () => {
const stylelintVersion = pkg.peerDependencies.stylelint;
const nodeVersion = JSON.parse(
execFileSync('npm', [
'view',
'--json',
`stylelint@${stylelintVersion}`,
'engines.node',
]).toString(),
);

expect(nodeVersion).toEqual(pkg.engines.node);
});
});
Loading