Skip to content

Commit 52e1b57

Browse files
authoredSep 10, 2024··
feat(javascript): add requester-testing package (#3684)
1 parent a4f625b commit 52e1b57

Some content is hidden

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

61 files changed

+1666
-4183
lines changed
 

‎.eslintrc.cjs

+7
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,13 @@ module.exports = {
194194
'@typescript-eslint/prefer-optional-chain': 0,
195195
}
196196
},
197+
{
198+
files: ['clients/algoliasearch-client-javascript/packages/**/__tests__/**/*.ts'],
199+
200+
extends: ["plugin:vitest/legacy-recommended"],
201+
202+
plugins: ['@vitest/eslint-plugin'],
203+
},
197204
{
198205
files: ['*.json'],
199206
parserOptions: {

‎clients/algoliasearch-client-javascript/package.json

-12
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,12 @@
1616
"test:bundle": "lerna run test:bundle --verbose --skip-nx-cache --include-dependencies"
1717
},
1818
"devDependencies": {
19-
"@babel/core": "7.25.2",
20-
"@babel/plugin-transform-class-properties": "7.25.4",
21-
"@babel/plugin-transform-runtime": "7.25.4",
22-
"@babel/preset-env": "7.25.4",
23-
"@babel/runtime": "7.25.6",
24-
"@rollup/plugin-babel": "6.0.4",
25-
"@rollup/plugin-node-resolve": "15.2.3",
26-
"@rollup/plugin-terser": "0.4.4",
27-
"@types/jest": "29.5.12",
2819
"@types/node": "22.5.1",
29-
"@types/rollup-plugin-node-globals": "1.4.4",
3020
"@types/semver": "7.5.8",
3121
"bundlesize": "0.18.2",
3222
"execa": "9.3.1",
3323
"lerna": "8.1.8",
3424
"rollup": "4.21.2",
35-
"rollup-plugin-node-globals": "1.4.0",
36-
"rollup-plugin-typescript2": "0.36.0",
3725
"semver": "7.6.3",
3826
"typescript": "5.5.4"
3927
},

0 commit comments

Comments
 (0)
Please sign in to comment.