-
Notifications
You must be signed in to change notification settings - Fork 202
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
Publish-auto is failing #1389
Comments
Yeah, I've seen it. It seems to be an issue with ts-node and the latest ts version (@hydrosquall found that: microsoft/TypeScript#49257 (comment)). I filed intuit/auto#2242 but no response so far. I don't want to roll back ts if I can avoid it so I've been just waiting. |
Might be able to use Yarn's selective dependency resolutions to override this. |
Updating ts-node did not help unfortunately. |
https://github.com/vega/ts-json-schema-generator/blob/next/yarn.lock#L73 looks like it's new enough. Where are you seeing an old version? |
I think @mohd-akram may be flagging the error ts-json-schema-generator/yarn.lock Line 1100 in 896292f
In general, The resolutions approach he proposed may work, but there's another option: this dependency is only being activated when it we write our config file in TS https://github.com/vega/ts-json-schema-generator/blob/next/auto.config.ts I think if we convert the config file to a JSON file (like https://github.com/vega/vega-lite/blob/next/.autorc.json ), and/or use selective resolution to resolve ts-node to 10^ across the board, we should be able to bypass any troubles created by the old version. Opened a PR to convert the config file to see if that's enough: #1413 |
Looks like it's mostly fixed now. Thank you @hydrosquall! |
It appears as if the underlying issue is with auto.
See here for the first publish-auto that is failing. (Which seems unrelated to the auto issue).
The issue does reproduce locally (for me) if you run
yarn release
.The impact of this is that
next
is not being kept up to dateThe text was updated successfully, but these errors were encountered: