meilisearch-js
meilisearch-js copied to clipboard
JavaScript client for the Meilisearch API
A lot of high profile repositories these days use [`pnpm`](https://github.com/pnpm/pnpm), for instance: - https://github.com/sveltejs/svelte - https://github.com/vitejs/vite - https://github.com/vuejs/core I was looking into upgrading Yarn, but it looks like to make...
# Pull Request ## Related issue Fixes #1660 ## What does this PR do - switches package manager to [`pnpm`](https://pnpm.io/) - updates and shortens GitHub actions regarding the setup of...
React also removed UMD builds. We should do the same to further reduce complexity. https://github.com/facebook/react/pull/28735
- https://github.com/meilisearch/meilisearch-js/pull/1794#issuecomment-2535175860 - #1830 - https://docs.npmjs.com/cli/v11/commands/npm-version - https://github.com/marketplace/actions/create-pull-request - `gh release -R ${{ github.repository }} ls -L 1 --json isDraft,tagName` - https://cli.github.com/manual/gh_release_list - https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#github-context - https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow
In our current Rollup setup, we're extending `window` with all of the exports as is. This is a bad practice, and can introduce property name conflicts. In #1740 Vite doesn't...
 - https://rollupjs.org/es-module-syntax/#default-export - https://github.com/rollup/rollup/issues/1961#issuecomment-423037881 - https://blog.neufund.org/why-we-have-banned-default-exports-and-you-should-do-the-same-d51fdc2cf2ad
**Description** I just updated the Meilisearch Javascript SDK to 0.45 to use the new `multiSearch` function with the `mergeFacets` attribute. I have strongly typed my parameter to be of type...