Skip to content

Commit 98cb3a4

Browse files
authored
Merge branch 'main' into bump-meilisearch-v1.11.0
2 parents 671df76 + 3de2804 commit 98cb3a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3247
-8256
lines changed

.changeset/config.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"ignore": [
1111
"@meilisearch/geo-playground",
1212
"@meilisearch/vanilla-playground",
13-
"@meilisearch/angular-playground",
1413
"@meilisearch/vue3-ts-playground",
1514
"@meilisearch/react-playground",
1615
"@meilisearch/local-react-playground",

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ typings/
7272
.env
7373
.env.test
7474

75-
# parcel-bundler cache (https://parceljs.org/)
76-
.cache
75+
# parcel cache (https://parceljs.org/)
76+
.parcel-cache
7777

7878
# Next.js build output
7979
.next
@@ -123,6 +123,4 @@ dist
123123
data.ms
124124
.turbo
125125

126-
.angular
127-
128126
.idea

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"scripts": {
1414
"playground:geosearch": "turbo run dev --filter=@meilisearch/geo-playground --parallel",
1515
"playground:vanilla": "turbo run dev --filter=@meilisearch/vanilla-playground --parallel",
16-
"playground:angular": "turbo run dev --filter=@meilisearch/angular-playground --parallel",
1716
"playground:vue3": "turbo run dev --filter=@meilisearch/vue3-ts-playground --parallel",
1817
"playground:react": "turbo run dev --filter=@meilisearch/react-playground --parallel",
1918
"playground:local-react": "turbo run dev --filter=@meilisearch/local-react-playground --parallel",
@@ -37,12 +36,17 @@
3736
"@testing-library/jest-dom": "^5.16.5",
3837
"@types/jest": "^29.5.1",
3938
"@types/jest-diff": "^24.3.0",
40-
"parcel-bundler": "^1.12.5",
41-
"turbo": "^1.10.12"
39+
"parcel": "^2.12.0",
40+
"turbo": "^2.1.3"
4241
},
4342
"dependencies": {
4443
"@changesets/cli": "^2.26.1",
4544
"instantsearch.css": "^8.0.0"
4645
},
46+
"alias": {
47+
"node:crypto": false,
48+
"node:buffer": false,
49+
"node:process": false
50+
},
4751
"packageManager": "[email protected]"
4852
}

packages/autocomplete-client/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @meilisearch/autocomplete-client
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- 26e7cfd: - update `meilisearch` js client
8+
- update `parcel` and `turbo`
9+
- get rid of angular playground tests, as [angular-instantsearch got deprecated](https://www.algolia.com/blog/algolia/migrating-from-angular-instantsearch/)
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [26e7cfd]
14+
- @meilisearch/instant-meilisearch@0.21.0
15+
316
## 0.3.0
417

518
### Minor Changes

packages/autocomplete-client/jest.config.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ module.exports = {
1111
projects: [
1212
{
1313
globals: {
14-
'ts-jest': {
15-
tsconfig: 'tsconfig.test.json',
16-
},
14+
'ts-jest': { tsconfig: 'tsconfig.test.json' },
15+
fetch: globalThis.fetch,
1716
},
1817
preset: 'ts-jest',
1918
displayName: 'dom',
@@ -22,9 +21,8 @@ module.exports = {
2221
},
2322
{
2423
globals: {
25-
'ts-jest': {
26-
tsconfig: 'tsconfig.test.json',
27-
},
24+
'ts-jest': { tsconfig: 'tsconfig.test.json' },
25+
fetch: globalThis.fetch,
2826
},
2927
preset: 'ts-jest',
3028
displayName: 'node',

packages/autocomplete-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meilisearch/autocomplete-client",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"private": false,
55
"description": "The search client to use Meilisearch with autocomplete.js.",
66
"homepage": "https://github.com/meilisearch/meilisearch-js-plugins/tree/main/packages/autocomplete-client",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PACKAGE_VERSION = '0.3.0'
1+
export const PACKAGE_VERSION = '0.4.0'

packages/autocomplete-client/tsconfig.test.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
},
77
"include": [
88
"./**/*"
9-
],
10-
"exclude": ["playgrounds/angular"]
9+
]
1110
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# eslint-config-meilisearch
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- 26e7cfd: - update `meilisearch` js client
8+
- update `parcel` and `turbo`
9+
- get rid of angular playground tests, as [angular-instantsearch got deprecated](https://www.algolia.com/blog/algolia/migrating-from-angular-instantsearch/)

packages/eslint-config-meilisearch/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ module.exports = {
5757
browser: true, // for jest/puppeteer tests in tests/env/express
5858
context: true, // for jest/puppeteer tests in tests/env/express
5959
jestPuppeteer: true, // for jest/puppeteer tests in tests/env/express
60-
jasmine: true, // for angular e2e tests in playground/angular
6160
},
6261
extends: [
6362
'standard',
@@ -120,7 +119,6 @@ module.exports = {
120119
browser: true, // for jest/puppeteer tests in tests/env/express
121120
context: true, // for jest/puppeteer tests in tests/env/express
122121
jestPuppeteer: true, // for jest/puppeteer tests in tests/env/express
123-
jasmine: true, // for angular e2e tests in playground/angular
124122
},
125123
extends: [
126124
'standard',

0 commit comments

Comments
 (0)