Skip to content

Commit f998a88

Browse files
build(deps-dev): bump the data group with 2 updates (#3110)
* build(deps-dev): bump the data group with 2 updates Bumps the data group with 2 updates: [@webref/css](https://github.com/w3c/webref) and [@webref/idl](https://github.com/w3c/webref). Updates `@webref/css` from 8.5.0 to 8.5.1 - [Commits](https://github.com/w3c/webref/compare/@webref/css@8.5.0...@webref/css@8.5.1) Updates `@webref/idl` from 3.74.1 to 3.75.0 - [Commits](https://github.com/w3c/webref/compare/@webref/idl@3.74.1...@webref/idl@3.75.0) --- updated-dependencies: - dependency-name: "@webref/css" dependency-version: 8.5.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: data - dependency-name: "@webref/idl" dependency-version: 3.75.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: data ... Signed-off-by: dependabot[bot] <support@github.com> * Skip circular reference with <light-dark-color> * Skip puppeteer downloads in diff job --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Florian Scholz <fs@florianscholz.com>
1 parent b340072 commit f998a88

4 files changed

Lines changed: 16 additions & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
node-version-file: pr/.nvmrc
9090
- name: Install
9191
run: |
92+
PUPPETEER_SKIP_DOWNLOAD=1
9293
cd bcd && npm ci | sed "s/^/[bcd] /" &
9394
cd base && npm ci | sed "s/^/[base] /" &
9495
cd pr && npm ci | sed "s/^/[pr] /" &

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@
9797
"@types/superagent": "^8.1.9",
9898
"@types/webidl2": "^24.4.3",
9999
"@types/yargs": "^17.0.35",
100-
"@webref/css": "8.5.0",
100+
"@webref/css": "8.5.1",
101101
"@webref/elements": "^2.7.0",
102-
"@webref/idl": "3.74.1",
102+
"@webref/idl": "3.75.0",
103103
"c8": "11.0.0",
104104
"chai": "4.5.0",
105105
"chai-as-promised": "8.0.2",

test-builder/css.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,11 @@ const resolveValuesFromTypes = (
255255
const resolved: string[] = [];
256256

257257
for (const value of values) {
258+
// See https://github.com/openwebdocs/mdn-bcd-collector/pull/3110#issuecomment-4125211642
259+
// There is a circular reference to <color> from <light-dark-color>, so we ignore this type for now.
260+
if (value === "<light-dark-color>") {
261+
continue;
262+
}
258263
if (value.startsWith("<")) {
259264
const type = value.replace(/^<(.*)>$/, "$1");
260265
if (type in types) {

0 commit comments

Comments
 (0)