Skip to content

Commit 5683fbe

Browse files
chore(ci): ignore rsc-mf canary fixture paths in dependency consistency check
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 27bb4e0 commit 5683fbe

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

scripts/check-dependencies.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ const ignoreDeps = [
88
'tsx',
99
];
1010

11+
const ignorePaths = [
12+
'tests/integration/rsc-mf/host',
13+
'tests/integration/rsc-mf/remote',
14+
];
15+
1116
const command = `npx check-dependency-version-consistency@latest . ${ignoreDeps
1217
.map(dep => `--ignore-dep "${dep}"`)
13-
.join(' ')}`;
18+
.join(' ')} ${ignorePaths.map(path => `--ignore-path "${path}"`).join(' ')}`;
1419

1520
console.log(`> ${command}`);
1621

0 commit comments

Comments
 (0)