Skip to content
New issue

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

Fix declarationBundler file filtering #7

Merged
merged 1 commit into from Feb 8, 2023

Conversation

boompikachu
Copy link
Contributor

@boompikachu boompikachu commented Feb 8, 2023

Using endsWith('x.d.ts') caused getEditModeLatex.d.ts and getViewModeLatex.d.ts to be filtered out

Fix:
Use filter((x) => x.split('/').pop() !== 'x.d.ts')

Alternative Fix:
Use filter((x) => !x.endsWith('/x.d.ts')) (adding additional slash before x.d.ts )

Using `endsWith('x.d.ts')` caused `getEditModeLatex.d.ts` and
`getViewModeLatex.d.ts` to be filtered out
@SymboLinker SymboLinker merged commit 865b166 into MathKeyboardEngine:main Feb 8, 2023
@SymboLinker
Copy link
Member

@boompikachu, many thanks for your contribution and sorry for this mistake!

@SymboLinker
Copy link
Member

Version 1.0.1 is available now. Thanks again :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants