@docsearch/modal 4.3.1 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/DocSearchButton.js +1 -1
- package/dist/esm/DocSearchModal.d.ts +1 -1
- package/dist/esm/DocSearchModal.js +1 -5
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -5
- package/dist/umd/DocSearchButton.js +2 -2
- package/dist/umd/DocSearchButton.js.map +1 -1
- package/dist/umd/DocSearchModal.js +2 -6
- package/dist/umd/DocSearchModal.js.map +1 -1
- package/dist/umd/index.js +2 -6
- package/dist/umd/index.js.map +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docsearch/modal",
|
|
3
3
|
"description": "DocSearch modal package for keyword search and Ask AI.",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.4.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://docsearch.algolia.com",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/algolia/docsearch.git",
|
|
10
|
-
"directory": "packages/docsearch-
|
|
10
|
+
"directory": "packages/docsearch-modal"
|
|
11
11
|
},
|
|
12
12
|
"author": {
|
|
13
13
|
"name": "Algolia, Inc.",
|
|
@@ -36,12 +36,15 @@
|
|
|
36
36
|
"build:clean": "rm -rf ./dist",
|
|
37
37
|
"build:clean-types": "rm -rf ./dist/esm/types",
|
|
38
38
|
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/esm/types",
|
|
39
|
-
"build": "
|
|
39
|
+
"build:source": "rollup --config --bundleConfigAsCjs",
|
|
40
|
+
"build:dts": "rollup --config rollup.dts.config.js --bundleConfigAsCjs",
|
|
41
|
+
"build": "yarn build:clean && yarn build:types && yarn build:source && yarn build:dts && yarn build:clean-types",
|
|
40
42
|
"on:change": "yarn build",
|
|
41
43
|
"watch": "nodemon --watch src --ext ts,tsx,js,jsx,json --ignore dist/ --ignore node_modules/ --verbose --delay 250ms --exec \"yarn on:change\""
|
|
42
44
|
},
|
|
43
45
|
"dependencies": {
|
|
44
|
-
"@docsearch/
|
|
46
|
+
"@docsearch/core": "4.4.0",
|
|
47
|
+
"@docsearch/react": "4.4.0"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
47
50
|
"@rollup/plugin-replace": "6.0.2",
|
|
@@ -52,7 +55,6 @@
|
|
|
52
55
|
"vitest": "3.0.2"
|
|
53
56
|
},
|
|
54
57
|
"peerDependencies": {
|
|
55
|
-
"@docsearch/core": ">= 4.2.0",
|
|
56
58
|
"@types/react": ">= 16.8.0 < 20.0.0",
|
|
57
59
|
"react": ">= 16.8.0 < 20.0.0",
|
|
58
60
|
"react-dom": ">= 16.8.0 < 20.0.0"
|