We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm run build generates a react/index.d.ts which uses incorrect paths in the current version (1.2.1):
npm run build
react/index.d.ts
E.g. (occurs multiple times in the file):
export declare const VSCodeBadge: [...] <import("../dist/dist/index.js") ...
npm install && npm run build
dist only appears once on the path, as it was the case before this commit acadb09:
dist
export declare const VSCodeBadge: [...] <import("../dist/index.js") ...
Starting with the linked commit and later, dist appears twice in the path, which is incorrect, as the path ../dist/dist/... does not exist.
../dist/dist/...
macOS 13.2.1
v1.2.1
The text was updated successfully, but these errors were encountered:
Thanks for the catch @erkenberg! Just merged a PR that should fix the issue and will publish a patch release shortly
Sorry, something went wrong.
Awesome, thanks for the quick fix @hawkticehurst !
hawkticehurst
Successfully merging a pull request may close this issue.
Describe the bug
npm run build
generates areact/index.d.ts
which uses incorrect paths in the current version (1.2.1):E.g. (occurs multiple times in the file):
To reproduce
npm install && npm run build
react/index.d.ts
Expected behavior
dist
only appears once on the path, as it was the case before this commit acadb09:Current behavior
Starting with the linked commit and later,
dist
appears twice in the path, which is incorrect, as the path../dist/dist/...
does not exist.Desktop (please complete the following information):
macOS 13.2.1
v1.2.1
The text was updated successfully, but these errors were encountered: