stricklandrbls commented on PR #1382: URL: https://github.com/apache/daffodil-vscode/pull/1382#issuecomment-3258818996
> When I attempt to debug the extension, it runs `yarn watch`. `yarn watch` is outputting this: @JeremyYao - It looks as if this is due to the fact that it's trying to build the entire project _and_ run `watch` for other sections of the project. Due to the fact that it's concurrent it causes the initial build script to not be complete before also executing the additional 2 `watch` scripts. It's not included in your console output but I'm assuming it's the same issue as mine. That issue being that the subsequent concurrent scripts are attempting to utilize the zipfile: `daffodil-vscode/debugger/target/universal/daffodil-debugger-3.11.0-1.4.2-SNAPSHOT.zip` but it has not been generated yet and causes an exception. You can determine for a fact that this is the same issue if you run the command: ```bash yarn run-func build/yarn-scripts.ts watch ``` I believe there's an issue with running the command from a `yarn watch` invocation where if a concurrent exception is thrown it will not be displayed until all the concurrent tasks have completed / failed. Whereas, if you run that command explicitly it execution terminates immediately after an exception is thrown. Try that out and let me know. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
