Skip to content

Commit 2d9dcd5

Browse files
authored
Skip @fluidframework/eslint-config-fluid when installing dev deps in perf benchmarks pipeline (#25828)
## Description Adds `@fluidframework/eslint-config-fluid` as another package to skip installing when the Performance Benchmarks pipeline has to do its installation of dev-deps. We recently made it part of the client release group (temporarily) but did not allow it to be published, so the pipeline can't find it when it runs. While the change in this PR could be reverted once we move `@fluidframework/eslint-config-fluid` back out from the client release group, I think it's fine to keep it, since we indeed don't need that package when running tests.
1 parent b535f00 commit 2d9dcd5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/pipelines/templates/include-copy-dev-dependencies.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ steps:
4040
'@microsoft/api-extractor',
4141
'@fluid-tools/build-cli',
4242
'@fluidframework/build-common',
43-
'@fluidframework/build-tools'
43+
'@fluidframework/build-tools',
44+
'@fluidframework/eslint-config-fluid'
4445
]);
4546
for (const [k, v] of Object.entries(devDependencies)) {
4647
if (!pkg.devDependencies[k] && !avoidCopying.has(k)) {

0 commit comments

Comments
 (0)