Skip to content

Commit 8adc86f

Browse files
Bump the production-dependencies group across 1 directory with 2 updates (#543)
* Bump the production-dependencies group across 1 directory with 2 updates Bumps the production-dependencies group with 2 updates in the / directory: [stylelint](https://github.com/stylelint/stylelint) and [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss). Updates `stylelint` from 16.10.0 to 16.11.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.10.0...16.11.0) Updates `stylelint-scss` from 6.9.0 to 6.10.0 - [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases) - [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md) - [Commits](stylelint-scss/stylelint-scss@v6.9.0...v6.10.0) --- updated-dependencies: - dependency-name: stylelint dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: stylelint-scss dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Update import paths for declarationValueIndex * Update import paths to use .cjs extension --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Rohan <[email protected]>
1 parent ee296b2 commit 8adc86f

7 files changed

+68
-93
lines changed

package-lock.json

+62-87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/borders.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import valueParser from 'postcss-value-parser'
44
import {walkGroups, primitivesVariables} from './lib/utils.js'
55

plugins/box-shadow.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import {primitivesVariables} from './lib/utils.js'
44

55
const {

plugins/colors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import {primitivesVariables, hasValidColor} from './lib/utils.js'
44
import valueParser from 'postcss-value-parser'
55

plugins/responsive-widths.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import valueParser from 'postcss-value-parser'
44

55
export const ruleName = 'primer/responsive-widths'

plugins/spacing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import valueParser from 'postcss-value-parser'
44
import {primitivesVariables, walkGroups} from './lib/utils.js'
55

plugins/typography.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import stylelint from 'stylelint'
2-
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
2+
import {declarationValueIndex} from 'stylelint/lib/utils/nodeFieldIndices.cjs'
33
import {primitivesVariables} from './lib/utils.js'
44

55
const {

0 commit comments

Comments
 (0)