-
-
Notifications
You must be signed in to change notification settings - Fork 478
Drop lerna #4258
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鈥檒l occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop lerna #4258
Changes from all commits
1bfeea2
7873c5f
44d24e9
93bca27
2de2333
c245e09
cd7a5d3
72e435b
6153be2
c81a678
47fc216
6e529b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,17 +56,11 @@ | |
| "scripts": { | ||
| "clean": "rm -rf lib && rm -f *.tsbuildinfo", | ||
| "build": "tsc -p tsconfig.build.json", | ||
| "build:typedocs": "typedoc --exclude src/index.ts --out typedocs src", | ||
| "build:release": "yarn clean && yarn run build && yarn run build:typedocs", | ||
| "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"", | ||
| "check-types": "tsc", | ||
| "coverage": "codecov -F lodestar-api", | ||
| "lint": "eslint --color --ext .ts src/ test/", | ||
| "lint:fix": "yarn run lint --fix", | ||
| "pretest": "yarn run check-types", | ||
| "test": "yarn test:unit && yarn test:e2e", | ||
| "test:unit": "nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'", | ||
| "check-readme": "typescript-docs-verifier" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CI only items like |
||
| "test:e2e": "echo 'n/a'" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yarn v1 |
||
| }, | ||
| "dependencies": { | ||
| "@lodestar/config": "^0.39.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This hardcoded list is sorted topologically. Yarn v1 does not support topological inference out of the box, so this does the trick. Long term we can switch to newer versions of yarn that do this automatically.