Releases: meilisearch/meilisearch-js-plugins
Releases · meilisearch/meilisearch-js-plugins
v0.3.0 🔗
Breaking changes ⚠️
- Convert project to TypeScript (#178) @bb, @bidoubiwa, @curquiza
- Instant MeiliSearch becomes compatible with all typescript projects
- Changed to named export instead of default export (#238) @bidoubiwa
New usage
ES:
import {instantMeiliSearch } from '@meilisearch/instant-meilisearch' // ES
const searchClient = instantMeiliSearch(...);
Node
const { instantMeiliSearch } = require('@meilisearch/instant-meilisearch') // Node
const searchClient = instantMeiliSearch(...);
instantMeiliSearch // browser
window.instantMeiliSearch // browser
const searchClient = instantMeiliSearch(...);
const searchClient2 = window.instantMeiliSearch(...);
Thanks again to @bb, @bidoubiwa, @curquiza, and @React-learner! 🎉
v0.2.7 🔗
Changes
- Add css template and html playground (#225) @bidoubiwa
We added a template folder with css
suggestions for instant-meilisearch.
As of this release, we only provide a simple one field search design, more are bound to come. Feel free to contribute with your own css template <3 (SCSS, Sass, Less, Stylus are also accepted).
If you'd like to contribute to the templates 😊 Please visit our contribution guide.
Thanks again to @bidoubiwa! 🎉
v0.2.6 🔗
Changes
- Add error information in console (#216) @bidoubiwa
- Upgrade dependencies and fix security vulnerabilities
Thanks again to @bidoubiwa, and @curquiza! 🎉