Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: More upgrades to monorepo tooling #9753

Merged
merged 6 commits into from
Mar 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
better guard
  • Loading branch information
runspired committed Mar 8, 2025
commit 59ea055b12fadaf3502f3ddc0e67a820022a226c
3 changes: 3 additions & 0 deletions internal-tooling/README.md
Original file line number Diff line number Diff line change
@@ -23,3 +23,6 @@ in tsconfig.json for any other workspace package specified by package.json
as a dependency, peer-dependency, or dev-dependency.

Will also ensure the proper settings for composite etc. are in use.

For packages that should emit types (any non-test app package) it will
ensure that the declarationDir is added to the files array in package.json.
2 changes: 1 addition & 1 deletion internal-tooling/src/sync-references.ts
Original file line number Diff line number Diff line change
@@ -282,8 +282,8 @@ async function main() {

if (pkgEdited || tsconfigEdited) {
anyEdited = true;
await project.save({ pkgEdited, configEdited: tsconfigEdited });
}
await project.save({ pkgEdited, configEdited: tsconfigEdited });
});

if (anyEdited) await runPrettier();