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
Correct me if I'm wrong @maier49, but just trying to add some clarity - this is related to CSS module .d.ts files being overwritten, right?
What's happening is that during a build for an application that uses @dojo/widgets some of the CSS module .d.ts files in node_modules/@dojo/widgets are being regenerated. I would think this should never happen; in my case it's worse because the files are being overwritten with no content, so I'm left with empty .d.ts files which breaks subsequent builds.
The reason it happens is because the build tool does a simple check for srcanywhere within the CSS file's path, intending to only match project/src/**/*.m.css. Unfortunately this also matches src/project/**/*.m.css, including src/project/node_modules/@dojo/widgets/**/*.m.css
Bug
Package Version:
Expected behavior:
Style
.dts
files for external dependencies should not be modified, regardless of where the file livesActual behavior:
They are modified
The text was updated successfully, but these errors were encountered: