Skip to content

Commit 593f024

Browse files
Merge pull request #7 from appbaseio/port-arc-changes
Add Elasticsearch serverless support, deferred install, and importer cluster prefill
2 parents 6480bed + 899b320 commit 593f024

39 files changed

Lines changed: 995 additions & 851 deletions

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
NPM_TOKEN=replace-with-your-github-package-token
21
IMAGEKIT_PUBLIC_KEY=replace-with-imagekit-public-key
32
IMAGEKIT_URL_ENDPOINT=https://ik.imagekit.io/your-endpoint/
43
IMAGEKIT_PRIVATE_KEY=replace-with-imagekit-private-key

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ module.exports = {
2828
'jsx-a11y/click-events-have-key-events': 0,
2929
'jsx-a11y/no-static-element-interactions': 0,
3030
'import/prefer-default-export': 0,
31+
'import/no-unresolved': [
32+
'error',
33+
{ ignore: ['^@appbaseio/reactivesearch-playground$'] },
34+
],
3135
'react/no-unknown-property': ['error', { ignore: ['css'] }],
3236
},
3337
};

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: 20
2121
cache: yarn
2222

2323
- name: Install dependencies

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Setup Node
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 16
31+
node-version: 20
3232
cache: yarn
3333
- name: Install dependencies
3434
run: yarn --frozen-lockfile
3535
- name: Yarn audit
36-
run: yarn audit --groups dependencies
36+
run: node ./scripts/audit-gate.js

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ cypress.env.json
7070
*.DS_Store
7171

7272
dist
73+
samples/moviesData.json
7374
.idea
7475

7576
# sentry

.npmrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16
1+
20.18.0

.yarnrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There is currently no guaranteed maintenance SLA.
99

1010
## Requirements
1111

12-
- Node.js 16.x (see `.nvmrc` / Volta config)
12+
- Node.js 20.x (see `.nvmrc` / Volta config)
1313
- Yarn 1.x
1414

1515
## Setup

cypress/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
plugins: ['cypress'],
33
env: {
4-
'cypress/global': true,
4+
'cypress/globals': true,
55
},
66
rules: {
77
'cypress/no-assigning-return-values': 'error',

0 commit comments

Comments
 (0)