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
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
The command gulp public-api:update fails on Windows with the error:
Error: Source file "dist\packages-dist\core\index.d.ts" not found
However the file exists. It is not found because the path string is made of Windows path delimiters \ instead of Unix delimiters /.
As a dirty hack you can change this.fileName = fileName; in the ResolvedDeclarationEmitter constructor to this.fileName = fileName.replace(/\\/g,"/");.
With this change the update command runs successfully.
However a more appropriate fix might be necessary.