fix: use vite instead of parcel in the examples (#2329)
Parcel would delete some random file like identity because it though it was not used, vite is smarter. Also remove unused imports
This commit is contained in:
parent
93578a4de0
commit
d360855f16
27 changed files with 2533 additions and 5010 deletions
|
|
@ -59,7 +59,7 @@ Some examples of valid commit messages (used as first lines):
|
|||
|
||||
To run this project, you will need:
|
||||
|
||||
- Node.js ≥ 16 – [nvm](https://github.com/creationix/nvm#install-script) is recommended
|
||||
- Node.js ≥ 18 – [nvm](https://github.com/nvm-sh/nvm#install-script) is recommended
|
||||
- [Yarn](https://yarnpkg.com)
|
||||
|
||||
## Release
|
||||
|
|
|
|||
|
|
@ -1,18 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>DocSearch v3 - React</title>
|
||||
</head>
|
||||
|
||||
<title>DocSearch v3 - React</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
|
||||
<script type="module" src="src/index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -4,17 +4,18 @@
|
|||
"version": "3.6.2",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "parcel build index.html",
|
||||
"start": "parcel index.html"
|
||||
"dev": "vite",
|
||||
"build": "tsc -b && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.6.2",
|
||||
"@docsearch/react": "3.6.2",
|
||||
"react": "^18.1.0",
|
||||
"react-dom": "^18.1.0"
|
||||
"@docsearch/react": "3.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"parcel": "2.7.0"
|
||||
"@vitejs/plugin-react": "^4.3.3",
|
||||
"vite": "^5.4.10"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
|
|
@ -1,8 +1,7 @@
|
|||
import React from 'react';
|
||||
import { DocSearch } from '@docsearch/react';
|
||||
|
||||
import './app.css';
|
||||
import '@docsearch/css';
|
||||
import './App.css';
|
||||
import '@docsearch/css/dist/style.css';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
|
|
@ -12,7 +11,7 @@ function App() {
|
|||
indexName="vuejs"
|
||||
appId="ML0LEBN7FQ"
|
||||
apiKey="21cf9df0734770a2448a9da64a700c22"
|
||||
insights
|
||||
insights={true}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
import React from 'react';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
import App from './App';
|
||||
|
||||
const root = createRoot(document.getElementById('root'));
|
||||
root.render(<App />);
|
||||
10
examples/demo/src/main.tsx
Normal file
10
examples/demo/src/main.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { StrictMode } from 'react';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
import App from './App.js';
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>
|
||||
);
|
||||
1
examples/demo/src/vite-env.d.ts
vendored
Normal file
1
examples/demo/src/vite-env.d.ts
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/// <reference types="vite/client" />
|
||||
26
examples/demo/tsconfig.json
Normal file
26
examples/demo/tsconfig.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "Bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"isolatedModules": true,
|
||||
"moduleDetection": "force",
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx",
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedSideEffectImports": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
7
examples/demo/vite.config.ts
Normal file
7
examples/demo/vite.config.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
})
|
||||
|
|
@ -1,20 +1,21 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>DocSearch v3 - Vanilla JavaScript</title>
|
||||
</head>
|
||||
|
||||
<title>DocSearch v3 - Vanilla JavaScript</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>DocSearch v3 - Vanilla JavaScript</h1>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>DocSearch v3 - Vanilla JavaScript</h1>
|
||||
<div id="docsearch"></div>
|
||||
</div>
|
||||
|
||||
<div id="docsearch"></div>
|
||||
</div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
<script type="module" src="app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -5,14 +5,15 @@
|
|||
"private": true,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "parcel build index.html",
|
||||
"start": "parcel index.html"
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.6.2",
|
||||
"@docsearch/js": "3.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"parcel": "2.7.0"
|
||||
"vite": "^5.4.10"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
|
|
@ -1,7 +1,7 @@
|
|||
import docsearch from '@docsearch/js/dist/umd';
|
||||
import docsearch from '@docsearch/js';
|
||||
|
||||
import './app.css';
|
||||
import '@docsearch/css';
|
||||
import '@docsearch/css/dist/style.css';
|
||||
|
||||
docsearch({
|
||||
container: '#docsearch',
|
||||
1
examples/js-demo/src/vite-env.d.ts
vendored
Normal file
1
examples/js-demo/src/vite-env.d.ts
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/// <reference types="vite/client" />
|
||||
24
examples/js-demo/tsconfig.json
Normal file
24
examples/js-demo/tsconfig.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "Bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"isolatedModules": true,
|
||||
"moduleDetection": "force",
|
||||
"noEmit": true,
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedSideEffectImports": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
10
lerna.json
10
lerna.json
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"packages": ["packages/*", "examples/*"],
|
||||
"packages": [
|
||||
"packages/docsearch-css",
|
||||
"packages/docsearch-js",
|
||||
"packages/docsearch-react",
|
||||
"examples/*"
|
||||
],
|
||||
"version": "3.6.2",
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true
|
||||
"npmClient": "yarn"
|
||||
}
|
||||
|
|
|
|||
22
package.json
22
package.json
|
|
@ -28,8 +28,8 @@
|
|||
"lint:css": "stylelint **/src/**/*.css",
|
||||
"lint": "eslint --ext .js,.ts,.tsx .",
|
||||
"playground:build": "yarn workspace @docsearch/react-example build",
|
||||
"playground:start": "yarn workspace @docsearch/react-example start",
|
||||
"playground-js:start": "yarn workspace @docsearch/js-example start",
|
||||
"playground:start": "yarn workspace @docsearch/react-example dev",
|
||||
"playground-js:start": "yarn workspace @docsearch/js-example dev",
|
||||
"release": "shipjs prepare",
|
||||
"start": "yarn run watch",
|
||||
"test:size": "bundlesize",
|
||||
|
|
@ -41,7 +41,6 @@
|
|||
"website:test": "cd packages/website && yarn install && yarn start --no-open"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.23.4",
|
||||
"@babel/plugin-transform-react-jsx": "7.23.4",
|
||||
"@babel/preset-env": "7.23.5",
|
||||
"@babel/preset-typescript": "7.23.3",
|
||||
|
|
@ -52,22 +51,16 @@
|
|||
"@testing-library/dom": "9.3.1",
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"@testing-library/react": "14.1.2",
|
||||
"@testing-library/user-event": "13.5.0",
|
||||
"@types/jest": "^29.0.0",
|
||||
"@types/jest-diff": "^24.3.0",
|
||||
"@types/react": "^18.0.0",
|
||||
"@types/react-dom": "^18.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.41.0",
|
||||
"@typescript-eslint/parser": "5.41.0",
|
||||
"algoliasearch": "5.11.0",
|
||||
"babel-eslint": "10.1.0",
|
||||
"babel-loader": "9.1.3",
|
||||
"babel-plugin-inline-replace-variables": "1.3.1",
|
||||
"babel-plugin-module-resolver": "4.0.0",
|
||||
"bundlesize2": "0.0.31",
|
||||
"cssnano": "4.1.10",
|
||||
"cypress": "9.6.1",
|
||||
"dotenv": "16.3.1",
|
||||
"eslint": "8.55.0",
|
||||
"eslint-config-algolia": "20.0.0",
|
||||
"eslint-config-prettier": "8.10.0",
|
||||
|
|
@ -82,23 +75,19 @@
|
|||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"jest": "29.6.1",
|
||||
"jest-environment-jsdom": "29.6.1",
|
||||
"jest-watch-typeahead": "1.1.0",
|
||||
"lerna": "4.0.0",
|
||||
"lerna": "8.1.9",
|
||||
"postcss": "8.4.25",
|
||||
"prettier": "2.7.1",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"rollup": "1.32.1",
|
||||
"rollup-plugin-commonjs": "10.1.0",
|
||||
"rollup-plugin-dts": "^6.1.1",
|
||||
"rollup-plugin-filesize": "9.1.2",
|
||||
"rollup-plugin-license": "3.2.0",
|
||||
"rollup-plugin-terser": "7.0.2",
|
||||
"shipjs": "0.24.4",
|
||||
"shipjs": "0.26.4",
|
||||
"start-server-and-test": "1.15.5",
|
||||
"stylelint": "14.16.1",
|
||||
"stylelint-a11y": "1.2.3",
|
||||
"stylelint-config-prettier": "9.0.3",
|
||||
"stylelint-config-sass-guidelines": "9.0.1",
|
||||
"stylelint-config-standard": "28.0.0",
|
||||
"stylelint-no-unsupported-browser-features": "5.0.4",
|
||||
|
|
@ -106,7 +95,6 @@
|
|||
"stylelint-prettier": "3.0.0",
|
||||
"ts-jest": "28.0.8",
|
||||
"typescript": "5.6.3",
|
||||
"watch": "1.0.2",
|
||||
"webpack": "4.44.1"
|
||||
"watch": "1.0.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@algolia/autocomplete-core": "1.9.3",
|
||||
"@algolia/autocomplete-preset-algolia": "1.9.3",
|
||||
"@algolia/autocomplete-preset-algolia": "1.17.6",
|
||||
"@docsearch/css": "3.6.2",
|
||||
"algoliasearch": "^5.11.0"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -62,7 +62,8 @@ export function DocSearch(props: DocSearchProps) {
|
|||
|
||||
const onClose = React.useCallback(() => {
|
||||
setIsOpen(false);
|
||||
}, [setIsOpen]);
|
||||
setInitialQuery(props?.initialQuery);
|
||||
}, [setIsOpen, props.initialQuery]);
|
||||
|
||||
const onInput = React.useCallback(
|
||||
(event: KeyboardEvent) => {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@algolia/ui-library": "4.0.0-beta.71",
|
||||
"@docsearch/react": "link:../docsearch-react",
|
||||
"@docsearch/react": "3.6.2",
|
||||
"@docusaurus/core": "3.5.2",
|
||||
"@docusaurus/preset-classic": "3.5.2",
|
||||
"@mdx-js/react": "^3.1.0",
|
||||
|
|
@ -48,5 +48,8 @@
|
|||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"resolutions": {
|
||||
"@docsearch/react": "link:../docsearch-react"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,12 +17,17 @@
|
|||
dependencies:
|
||||
"@algolia/autocomplete-shared" "1.9.3"
|
||||
|
||||
"@algolia/autocomplete-preset-algolia@1.9.3":
|
||||
version "1.9.3"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz#64cca4a4304cfcad2cf730e83067e0c1b2f485da"
|
||||
integrity sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==
|
||||
"@algolia/autocomplete-preset-algolia@1.17.6":
|
||||
version "1.17.6"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.6.tgz#465b652bff5c262aad4da2488d78629cfa906be6"
|
||||
integrity sha512-Cvg5JENdSCMuClwhJ1ON1/jSuojaYMiUW2KePm18IkdCzPJj/NXojaOxw58RFtQFpJgfVW8h2E8mEoDtLlMdeA==
|
||||
dependencies:
|
||||
"@algolia/autocomplete-shared" "1.9.3"
|
||||
"@algolia/autocomplete-shared" "1.17.6"
|
||||
|
||||
"@algolia/autocomplete-shared@1.17.6":
|
||||
version "1.17.6"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.6.tgz#ad951632b6d477d4ba9a68a347e1702d26009d58"
|
||||
integrity sha512-aq/3V9E00Tw2GC/PqgyPGXtqJUlVc17v4cn1EUhSc+O/4zd04Uwb3UmPm8KDaYQQOrkt1lwvCj2vG2wRE5IKhw==
|
||||
|
||||
"@algolia/autocomplete-shared@1.9.3":
|
||||
version "1.9.3"
|
||||
|
|
@ -48,15 +53,15 @@
|
|||
dependencies:
|
||||
"@algolia/cache-common" "4.24.0"
|
||||
|
||||
"@algolia/client-abtesting@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-abtesting/-/client-abtesting-5.11.0.tgz#d17cc3fd720ee3e814466ef73edeb1bc3e61ebf5"
|
||||
integrity sha512-1PjRyyuif6Cr4O1HykIgOO8CsjVoMItpBLVY2xMEYzBJHMsBUDYSAM2pFB73wNepq2eVkMVcKurCby2RMODcxQ==
|
||||
"@algolia/client-abtesting@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-abtesting/-/client-abtesting-5.12.0.tgz#45175422ee85d505ff6a16d1634a739478a6ad0b"
|
||||
integrity sha512-hx4eVydkm3yrFCFxmcBtSzI/ykt0cZ6sDWch+v3JTgKpD2WtosMJU3Upv1AjQ4B6COSHCOWEX3vfFxW6OoH6aA==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/client-account@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -77,15 +82,15 @@
|
|||
"@algolia/requester-common" "4.24.0"
|
||||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
"@algolia/client-analytics@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-5.11.0.tgz#5e1435b593df50e9da67c82c8675b7b94ae13c1f"
|
||||
integrity sha512-uwYY61Ly12TvXwj3xHwSEEJRp9A5nTMLtrPy35Cyy/xQuP4uQSEoDhmj2UvsiO8l1ET2EBAtqGTLUzDTklniOA==
|
||||
"@algolia/client-analytics@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-5.12.0.tgz#e387f4de01f4fb549b7506762003bef335be2927"
|
||||
integrity sha512-EpTsSv6IW8maCfXCDIptgT7+mQJj7pImEkcNUnxR8yUKAHzTogTXv9yGm2WXOZFVuwstd2i0sImhQ1Vz8RH/hA==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/client-common@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -95,20 +100,20 @@
|
|||
"@algolia/requester-common" "4.24.0"
|
||||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
"@algolia/client-common@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-5.11.0.tgz#cb9a3e7c3045a32a1ca286eb41d1f14e66f3f06e"
|
||||
integrity sha512-6LAAQxMoxzYf3wk7HKee4YFNYYq56ifKz6g7JWAY2HGya20KQmDec2pQ8t4C90kUvGk69o8RVpHWoeT/wfBXbw==
|
||||
"@algolia/client-common@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-5.12.0.tgz#e33b6fefb333beb56eb58ab7424fcd7ec11ac7d0"
|
||||
integrity sha512-od3WmO8qxyfNhKc+K3D17tvun3IMs/xMNmxCG9MiElAkYVbPPTRUYMkRneCpmJyQI0hNx2/EA4kZgzVfQjO86Q==
|
||||
|
||||
"@algolia/client-insights@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-insights/-/client-insights-5.11.0.tgz#2d322b02c35383a6f2d0ff7f15e65d45ba3d4f2d"
|
||||
integrity sha512-qSIzjG0UsDNwu1lybihF8cxOKmiYBh97ZEK3oFmCD0ao2DcSdRdoPhCsxEmdlIGEu+etJkPPxeoZab8bYyblVQ==
|
||||
"@algolia/client-insights@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-insights/-/client-insights-5.12.0.tgz#bb80c4227178b452dd93a649b9991b8140cba52d"
|
||||
integrity sha512-8alajmsYUd+7vfX5lpRNdxqv3Xx9clIHLUItyQK0Z6gwGMbVEFe6YYhgDtwslMAP0y6b0WeJEIZJMLgT7VYpRw==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/client-personalization@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -119,25 +124,25 @@
|
|||
"@algolia/requester-common" "4.24.0"
|
||||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
"@algolia/client-personalization@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-5.11.0.tgz#d41fb10b36315949e0bbb293abe3c21cd73c4b0d"
|
||||
integrity sha512-f9SEqBAZqeQozERphNvnkqzkuR447yp5gTEW1aOlxCxqPPiG8Aa7wrwrli6Qu64dvHfZKf5V7+2rU13//+TgkA==
|
||||
"@algolia/client-personalization@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-5.12.0.tgz#ad711245403754686efff6a65d6c83877e64ecfa"
|
||||
integrity sha512-bUV9HtfkTBgpoVhxFrMkmVPG03ZN1Rtn51kiaEtukucdk3ggjR9Qu1YUfRSU2lFgxr9qJc8lTxwfvhjCeJRcqw==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/client-query-suggestions@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.11.0.tgz#32c666f97c2e389736c5d68ee735162620165ab4"
|
||||
integrity sha512-0mBKTNHg6b3r8c/Z4gD5l3pGP5CIQfY5LZ8dYxlff64VYQb6kNuyX3U0F9HyPdjDVqbeKBRJIqPxVq0mgAZ5Gg==
|
||||
"@algolia/client-query-suggestions@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.12.0.tgz#fc3bbf6d86e8989bb8487dc69ec49743fa75ceb4"
|
||||
integrity sha512-Q5CszzGWfxbIDs9DJ/QJsL7bP6h+lJMg27KxieEnI9KGCu0Jt5iFA3GkREkgRZxRdzlHbZKkrIzhtHVbSHw/rg==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/client-search@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -148,15 +153,15 @@
|
|||
"@algolia/requester-common" "4.24.0"
|
||||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
"@algolia/client-search@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-5.11.0.tgz#4f0e7db8a72b80cc9072a5800b0f4aa5a4cdb625"
|
||||
integrity sha512-jP94/rojiSzUTilBqPQSfidNw8KZzzKkkrUL4kPeukTqpkZdWLB0W7OtDcqOLd4vBA7FXkEFGiRaj3WQemyLhw==
|
||||
"@algolia/client-search@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-5.12.0.tgz#cd3eb4854664177d6e992bb2b942e2a12e4cb919"
|
||||
integrity sha512-R3qzEytgVLHOGNri+bpta6NtTt7YtkvUe/QBcAmMDjW4Jk1P0eBYIPfvnzIPbINRsLxIq9fZs9uAYBgsrts4Zg==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/events@^4.0.1":
|
||||
version "4.0.1"
|
||||
|
|
@ -177,15 +182,15 @@
|
|||
react "^17.0.2"
|
||||
react-dom "^17.0.2"
|
||||
|
||||
"@algolia/ingestion@1.11.0":
|
||||
version "1.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/ingestion/-/ingestion-1.11.0.tgz#7408989e6fa34c27b5a11de13c397a794e8c1f82"
|
||||
integrity sha512-XAZLRUz5LqoCUAR6ej+tpiFfZlf/EfplfsbxEAMYtdc5WpStU+++YULqL5GDnrlg13eegHQWuO4lLZquwKSeng==
|
||||
"@algolia/ingestion@1.12.0":
|
||||
version "1.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/ingestion/-/ingestion-1.12.0.tgz#01a297fb2a58019595e5d74e95939da033a18194"
|
||||
integrity sha512-zpHo6qhR22tL8FsdSI4DvEraPDi/019HmMrCFB/TUX98yzh5ooAU7sNW0qPL1I7+S++VbBmNzJOEU9VI8tEC8A==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/logger-common@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -199,15 +204,15 @@
|
|||
dependencies:
|
||||
"@algolia/logger-common" "4.24.0"
|
||||
|
||||
"@algolia/monitoring@1.11.0":
|
||||
version "1.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/monitoring/-/monitoring-1.11.0.tgz#2fb0a3ef73472fd8e720c39453115e1692a84809"
|
||||
integrity sha512-G6hA2xpP+fe0vtpKZTN7GTA5BgVmeIWQqddDL1Bxnn1WrGrwL3v0Yt+PTGuwiIvFy5fWGaPmsQkFF3I3XCGIww==
|
||||
"@algolia/monitoring@1.12.0":
|
||||
version "1.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/monitoring/-/monitoring-1.12.0.tgz#f510bfd9d09352b31ccce293d1fd84cdea59354c"
|
||||
integrity sha512-i2AJZED/zf4uhxezAJUhMKoL5QoepCBp2ynOYol0N76+TSoohaMADdPnWCqOULF4RzOwrG8wWynAwBlXsAI1RQ==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/recommend@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -226,15 +231,15 @@
|
|||
"@algolia/requester-node-http" "4.24.0"
|
||||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
"@algolia/recommend@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-5.11.0.tgz#9253f756d0fdbf482e1d1295b392cbd95db0cac1"
|
||||
integrity sha512-Vvg3qmpUlJoefsHvPtef5Ji1g+84mRQfq1jcn8BKxpxGGYrpCTdi/PiiGU/rupEEgto7cJVVwaJMsGwcNUlf0A==
|
||||
"@algolia/recommend@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-5.12.0.tgz#bc9f69c78c08ba9a3579e7fe2a0f4037b494cc55"
|
||||
integrity sha512-0jmZyKvYnB/Bj5c7WKsKedOUjnr0UtXm0LVFUdQrxXfqOqvWv9n6Vpr65UjdYG4Q49kRQxhlwtal9WJYrYymXg==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
"@algolia/requester-browser-xhr@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -243,24 +248,24 @@
|
|||
dependencies:
|
||||
"@algolia/requester-common" "4.24.0"
|
||||
|
||||
"@algolia/requester-browser-xhr@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.11.0.tgz#d15f6f84128f61b3b8c62012269a466db79f6dcf"
|
||||
integrity sha512-koy3lcWUrtUUfmMaDV/7zvZA7WGCFuBM+9t6KUfz93NTOmP6nQ6zcvAD66G0E1uapzj0S5Z6CA6Nd0Q5nVetcg==
|
||||
"@algolia/requester-browser-xhr@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.12.0.tgz#dba0072d5098a145e4724a723ea1c765b4af0cb6"
|
||||
integrity sha512-KxwleraFuVoEGCoeW6Y1RAEbgBMS7SavqeyzWdtkJc6mXeCOJXn1iZitb8Tyn2FcpMNUKlSm0adrUTt7G47+Ow==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
|
||||
"@algolia/requester-common@4.24.0":
|
||||
version "4.24.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.24.0.tgz#1c60c198031f48fcdb9e34c4057a3ea987b9a436"
|
||||
integrity sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==
|
||||
|
||||
"@algolia/requester-fetch@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-fetch/-/requester-fetch-5.11.0.tgz#b4c7fe6e0b53d8ff097d643b1459e2bb45258723"
|
||||
integrity sha512-kuQGSBfDwSW0uXT0GqbwEsvQNDwmgsw2gZp1TG+IR61TExHmnL1nqgsoAIrxV86O2uXlwtrkrBDW0qDbGW4BHg==
|
||||
"@algolia/requester-fetch@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-fetch/-/requester-fetch-5.12.0.tgz#4db2772b9b0699fdfadbcd7b87e0608a4acf8363"
|
||||
integrity sha512-FuDZXUGU1pAg2HCnrt8+q1VGHKChV/LhvjvZlLOT7e56GJie6p+EuLu4/hMKPOVuQQ8XXtrTHKIU3Lw+7O5/bQ==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
|
||||
"@algolia/requester-node-http@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -269,12 +274,12 @@
|
|||
dependencies:
|
||||
"@algolia/requester-common" "4.24.0"
|
||||
|
||||
"@algolia/requester-node-http@5.11.0":
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-5.11.0.tgz#143939cea758ebab6a6edea9d1b8d57eaf8603ed"
|
||||
integrity sha512-7XiZuTbLmPQM5zIIEqqABU1rvpN61+qSaMPfPAiB1hhARno8Ak6/GddR1OaRTPmV/GA72AQknxYocCqUxemwzg==
|
||||
"@algolia/requester-node-http@5.12.0":
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-5.12.0.tgz#6c6bb47df33351b819790f26346632196c97a3c7"
|
||||
integrity sha512-ncDDY7CxZhMs6LIoPl+vHFQceIBhYPY5EfuGF1V7beO0U38xfsCYEyutEFB2kRzf4D9Gqppn3iWX71sNtrKcuw==
|
||||
dependencies:
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
|
||||
"@algolia/transporter@4.24.0":
|
||||
version "4.24.0"
|
||||
|
|
@ -306,18 +311,18 @@
|
|||
"@jridgewell/trace-mapping" "^0.3.24"
|
||||
|
||||
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.8.3":
|
||||
version "7.26.0"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.0.tgz#9374b5cd068d128dac0b94ff482594273b1c2815"
|
||||
integrity sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==
|
||||
version "7.26.2"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
|
||||
integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
|
||||
dependencies:
|
||||
"@babel/helper-validator-identifier" "^7.25.9"
|
||||
js-tokens "^4.0.0"
|
||||
picocolors "^1.0.0"
|
||||
|
||||
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0":
|
||||
version "7.26.0"
|
||||
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.0.tgz#f02ba6d34e88fadd5e8861e8b38902f43cc1c819"
|
||||
integrity sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==
|
||||
version "7.26.2"
|
||||
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e"
|
||||
integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==
|
||||
|
||||
"@babel/core@^7.21.3", "@babel/core@^7.23.3":
|
||||
version "7.26.0"
|
||||
|
|
@ -341,11 +346,11 @@
|
|||
semver "^6.3.1"
|
||||
|
||||
"@babel/generator@^7.23.3", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0":
|
||||
version "7.26.0"
|
||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.0.tgz#505cc7c90d92513f458a477e5ef0703e7c91b8d7"
|
||||
integrity sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==
|
||||
version "7.26.2"
|
||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f"
|
||||
integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==
|
||||
dependencies:
|
||||
"@babel/parser" "^7.26.0"
|
||||
"@babel/parser" "^7.26.2"
|
||||
"@babel/types" "^7.26.0"
|
||||
"@jridgewell/gen-mapping" "^0.3.5"
|
||||
"@jridgewell/trace-mapping" "^0.3.25"
|
||||
|
|
@ -513,10 +518,10 @@
|
|||
"@babel/template" "^7.25.9"
|
||||
"@babel/types" "^7.26.0"
|
||||
|
||||
"@babel/parser@^7.25.9", "@babel/parser@^7.26.0":
|
||||
version "7.26.1"
|
||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.1.tgz#44e02499960df2cdce2c456372a3e8e0c3c5c975"
|
||||
integrity sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==
|
||||
"@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2":
|
||||
version "7.26.2"
|
||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11"
|
||||
integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==
|
||||
dependencies:
|
||||
"@babel/types" "^7.26.0"
|
||||
|
||||
|
|
@ -1332,6 +1337,10 @@
|
|||
resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.2.tgz#ccd9c83dbfeaf34efe4e3547ee596714ae7e5891"
|
||||
integrity sha512-vKNZepO2j7MrYBTZIGXvlUOIR+v9KRf70FApRgovWrj3GTs1EITz/Xb0AOlm1xsQBp16clVZj1SY/qaOJbQtZw==
|
||||
|
||||
"@docsearch/react@3.6.2":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@docsearch/react@^3.5.2":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
|
@ -2350,9 +2359,9 @@
|
|||
"@types/node" "*"
|
||||
|
||||
"@types/node@*":
|
||||
version "22.8.4"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.8.4.tgz#ab754f7ac52e1fe74174f761c5b03acaf06da0dc"
|
||||
integrity sha512-SpNNxkftTJOPk0oN+y2bIqurEXHTA2AOZ3EJDDKeJ5VzkvvORSvmQXGQarcOzWV1ac7DCaPBEdMDxBsM+d8jWw==
|
||||
version "22.8.5"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.8.5.tgz#a978fb6755dbb32889b0bc3e37554dbc04f261a6"
|
||||
integrity sha512-5iYk6AMPtsMbkZqCO1UGF9W5L38twq11S2pYWkybGHH2ogPUvXWNlQqJBzuEZWKj/WRH+QTeiv6ySWqJtvIEgA==
|
||||
dependencies:
|
||||
undici-types "~6.19.8"
|
||||
|
||||
|
|
@ -2758,23 +2767,23 @@ algoliasearch@^4.18.0:
|
|||
"@algolia/transporter" "4.24.0"
|
||||
|
||||
algoliasearch@^5.11.0:
|
||||
version "5.11.0"
|
||||
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-5.11.0.tgz#682a25b05c32de6d89c73b6fa898e581c8de71ba"
|
||||
integrity sha512-EohJsTsnaE4zq3wcO0i9KTw7Y+o/0B1Oc+Y8nxgKkYeo7GYjkn8PDUaMnTh7+lnkV9tqPpcQigdE0xNXWIefRg==
|
||||
version "5.12.0"
|
||||
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-5.12.0.tgz#2e822a7916d691e55058ea7dba277d5110969dd0"
|
||||
integrity sha512-psGBRYdGgik8I6m28iAB8xpubvjEt7UQU+w5MAJUA2324WHiGoHap5BPkkjB14rMaXeRts6pmOsrVIglGyOVwg==
|
||||
dependencies:
|
||||
"@algolia/client-abtesting" "5.11.0"
|
||||
"@algolia/client-analytics" "5.11.0"
|
||||
"@algolia/client-common" "5.11.0"
|
||||
"@algolia/client-insights" "5.11.0"
|
||||
"@algolia/client-personalization" "5.11.0"
|
||||
"@algolia/client-query-suggestions" "5.11.0"
|
||||
"@algolia/client-search" "5.11.0"
|
||||
"@algolia/ingestion" "1.11.0"
|
||||
"@algolia/monitoring" "1.11.0"
|
||||
"@algolia/recommend" "5.11.0"
|
||||
"@algolia/requester-browser-xhr" "5.11.0"
|
||||
"@algolia/requester-fetch" "5.11.0"
|
||||
"@algolia/requester-node-http" "5.11.0"
|
||||
"@algolia/client-abtesting" "5.12.0"
|
||||
"@algolia/client-analytics" "5.12.0"
|
||||
"@algolia/client-common" "5.12.0"
|
||||
"@algolia/client-insights" "5.12.0"
|
||||
"@algolia/client-personalization" "5.12.0"
|
||||
"@algolia/client-query-suggestions" "5.12.0"
|
||||
"@algolia/client-search" "5.12.0"
|
||||
"@algolia/ingestion" "1.12.0"
|
||||
"@algolia/monitoring" "1.12.0"
|
||||
"@algolia/recommend" "5.12.0"
|
||||
"@algolia/requester-browser-xhr" "5.12.0"
|
||||
"@algolia/requester-fetch" "5.12.0"
|
||||
"@algolia/requester-node-http" "5.12.0"
|
||||
|
||||
ansi-align@^3.0.1:
|
||||
version "3.0.1"
|
||||
|
|
@ -3039,7 +3048,7 @@ braces@^3.0.3, braces@~3.0.2:
|
|||
dependencies:
|
||||
fill-range "^7.1.1"
|
||||
|
||||
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0:
|
||||
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0, browserslist@^4.24.2:
|
||||
version "4.24.2"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580"
|
||||
integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==
|
||||
|
|
@ -3137,9 +3146,9 @@ caniuse-api@^3.0.0:
|
|||
lodash.uniq "^4.5.0"
|
||||
|
||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669:
|
||||
version "1.0.30001675"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001675.tgz#0c1f01fc9cc543b61839753a4c234f995588d1b9"
|
||||
integrity sha512-/wV1bQwPrkLiQMjaJF5yUMVM/VdRPOCU8QZ+PmG6uW6DvYSrNY1bpwHI/3mOcUosLaJCzYDi5o91IQB51ft6cg==
|
||||
version "1.0.30001676"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001676.tgz#fe133d41fe74af8f7cc93b8a714c3e86a86e6f04"
|
||||
integrity sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw==
|
||||
|
||||
ccount@^2.0.0:
|
||||
version "2.0.1"
|
||||
|
|
@ -3523,21 +3532,21 @@ copy-webpack-plugin@^11.0.0:
|
|||
serialize-javascript "^6.0.0"
|
||||
|
||||
core-js-compat@^3.38.0, core-js-compat@^3.38.1:
|
||||
version "3.38.1"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.1.tgz#2bc7a298746ca5a7bcb9c164bcb120f2ebc09a09"
|
||||
integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==
|
||||
version "3.39.0"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.39.0.tgz#b12dccb495f2601dc860bdbe7b4e3ffa8ba63f61"
|
||||
integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==
|
||||
dependencies:
|
||||
browserslist "^4.23.3"
|
||||
browserslist "^4.24.2"
|
||||
|
||||
core-js-pure@^3.30.2:
|
||||
version "3.38.1"
|
||||
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.38.1.tgz#e8534062a54b7221344884ba9b52474be495ada3"
|
||||
integrity sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==
|
||||
version "3.39.0"
|
||||
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.39.0.tgz#aa0d54d70a15bdc13e7c853db87c10abc30d68f3"
|
||||
integrity sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==
|
||||
|
||||
core-js@^3.31.1:
|
||||
version "3.38.1"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.1.tgz#aa375b79a286a670388a1a363363d53677c0383e"
|
||||
integrity sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==
|
||||
version "3.39.0"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.39.0.tgz#57f7647f4d2d030c32a72ea23a0555b2eaa30f83"
|
||||
integrity sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==
|
||||
|
||||
core-util-is@~1.0.0:
|
||||
version "1.0.3"
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
"**/__tests__/**/*",
|
||||
"**/dist",
|
||||
"**/node_modules",
|
||||
"cypress"
|
||||
"cypress",
|
||||
"examples"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue