You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I noticed the following issue when running npm run build in the /packages/td-tools/ folder
> tsc -b && webpack
'webpack' is not recognized as an internal or external command,
operable program or batch file.
Running npm run build in the root folder does not cause any issue. Is it a local issue on my machine (which I doubt) or is there anything that has been changed I am not aware of!?
The text was updated successfully, but these errors were encountered:
Running npm run build in the root folder does not cause any issue. Is it a local issue on my machine (which I doubt) or is there anything that has been changed I am not aware of!?
Correct, this is due to we now building the whole project using tsc and we are not iterating on the packages list like before (i.e., we are not calling npm run build inside the td-tools folder anymore). this is another reason why we have to call npm run build -w packages/browser-bundle manually in the root build script. Anyhow, as mentioned in #387 (comment) I hope to migrate soon to esbuild then webpack would not be needed anymore in td-tools.
Recently I noticed the following issue when running
npm run build
in the/packages/td-tools/
folderRunning
npm run build
in the root folder does not cause any issue. Is it a local issue on my machine (which I doubt) or is there anything that has been changed I am not aware of!?The text was updated successfully, but these errors were encountered: