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
This is not just a request to bump a dependency for a CVE
This is not solely a request to bump a dependency for a CVE
Current Behavior
If I run npm install at the root of https://github.com/NousResearch/hermes-agent, the file dist/tabler-icons-react.d.ts must be present in node_modules/@tabler/icons-react, but is missing.
The next step to build the desktop app, namely npm run build -w apps/desktop fails at tsc -b with errors due to missing type declaration.
Build succeeds if I manually insert the file from the tarball I got from npm registry.
Expected Behavior
npm install and then npm run build -w apps/desktop succeeds.
cafile = "corporate certificate (redacted)"registry = "corporate npm proxy (redacted)"; no other configs set
The corporate proxy is not the cause, since the tarball downloaded from the proxy does contain the offending file, and it is present when I npm install @tabler/icons-react from a fresh project.
Is there an existing issue for this?
This issue exists in the latest npm version
This is not just a request to bump a dependency for a CVE
Current Behavior
npm installat the root of https://github.com/NousResearch/hermes-agent, the filedist/tabler-icons-react.d.tsmust be present innode_modules/@tabler/icons-react, but is missing.npm run build -w apps/desktopfails attsc -bwith errors due to missing type declaration.Expected Behavior
npm installand thennpm run build -w apps/desktopsucceeds.Steps To Reproduce
npm installat the project rootnode_modules/@tabler/icons-reactto see if the filedist/tabler-icons-react.d.tsis presentnpm run build -w apps/desktopat the project root to see "type declarations missing" errors fromtsc -b(more complete description and what I tried to fix it can be found in Desktop installer fails on main: missing type declarations (389 TS errors) NousResearch/hermes-agent#38146 (comment))Environment
The corporate proxy is not the cause, since the tarball downloaded from the proxy does contain the offending file, and it is present when I
npm install @tabler/icons-reactfrom a fresh project.