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

Add test-types script back #1622

Merged
merged 2 commits into from
Sep 12, 2021
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
Add --concurrency 1 to lerna run test-types
  • Loading branch information
jablko committed Aug 28, 2021
commit b87292c3451d55307357491724dfe54e793e0b03
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"publish-next": "lerna publish --force-publish=\"*\" --pre-dist-tag next --preid next",
"test-api": "lerna run test-api",
"test-coverage": "lerna run test-coverage",
"test-types": "lerna run test-types",
"test-types": "lerna --concurrency 1 run test-types",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Concurrent dtslint invocations were trampling each other installing TypeScript versions ... At least I think that's what was happening here -- and here ... Perhaps here too ...

"test": "yarn build && yarn lint && yarn test-coverage && yarn test-types"
},
"dependencies": {},
Expand Down