@tryghost/sodo-search 1.8.18 → 1.8.19
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/package.json +22 -23
- package/umd/sodo-search.min.js +21 -58
- package/umd/sodo-search.min.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryghost/sodo-search",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.19",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "https://github.com/TryGhost/Ghost",
|
|
6
6
|
"author": "Ghost Foundation",
|
|
@@ -15,24 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@tryghost/debug": "2.2.0",
|
|
18
|
-
"@tryghost/i18n": "workspace:*",
|
|
19
18
|
"flexsearch": "0.8.153",
|
|
20
19
|
"react": "17.0.2",
|
|
21
|
-
"react-dom": "17.0.2"
|
|
22
|
-
|
|
23
|
-
"scripts": {
|
|
24
|
-
"dev": "concurrently \"vite preview -l silent\" \"pnpm build:watch\" \"pnpm tailwind\"",
|
|
25
|
-
"build": "vite build && pnpm tailwind:base",
|
|
26
|
-
"build:watch": "vite build --watch",
|
|
27
|
-
"tailwind": "pnpm tailwind:base --watch ",
|
|
28
|
-
"tailwind:base": "tailwindcss -i ./src/index.css -o ./umd/main.css --minify",
|
|
29
|
-
"test": "vitest run",
|
|
30
|
-
"test:ci": "pnpm test --coverage",
|
|
31
|
-
"test:unit": "pnpm test:ci",
|
|
32
|
-
"lint": "eslint src --ext .js --cache",
|
|
33
|
-
"preship": "pnpm lint",
|
|
34
|
-
"ship": "node ../../.github/scripts/release-apps.js",
|
|
35
|
-
"prepublishOnly": "pnpm build"
|
|
20
|
+
"react-dom": "17.0.2",
|
|
21
|
+
"@tryghost/i18n": "0.0.0"
|
|
36
22
|
},
|
|
37
23
|
"eslintConfig": {
|
|
38
24
|
"env": {
|
|
@@ -98,20 +84,33 @@
|
|
|
98
84
|
"@testing-library/jest-dom": "5.17.0",
|
|
99
85
|
"@testing-library/react": "12.1.5",
|
|
100
86
|
"@vitejs/plugin-react": "4.7.0",
|
|
101
|
-
"@vitest/coverage-v8": "
|
|
87
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
102
88
|
"concurrently": "8.2.2",
|
|
103
89
|
"cross-fetch": "4.1.0",
|
|
104
|
-
"eslint": "
|
|
90
|
+
"eslint": "8.57.1",
|
|
105
91
|
"jsdom": "28.1.0",
|
|
106
92
|
"nock": "13.5.6",
|
|
107
93
|
"tailwindcss": "3.4.18",
|
|
108
|
-
"vite": "
|
|
109
|
-
"vite-plugin-svgr": "
|
|
110
|
-
"vitest": "
|
|
94
|
+
"vite": "7.3.2",
|
|
95
|
+
"vite-plugin-svgr": "4.5.0",
|
|
96
|
+
"vitest": "4.1.2"
|
|
111
97
|
},
|
|
112
98
|
"nx": {
|
|
113
99
|
"tags": [
|
|
114
100
|
"i18n"
|
|
115
101
|
]
|
|
102
|
+
},
|
|
103
|
+
"scripts": {
|
|
104
|
+
"dev": "concurrently \"vite preview -l silent\" \"pnpm build:watch\" \"pnpm tailwind\"",
|
|
105
|
+
"build": "vite build && pnpm tailwind:base",
|
|
106
|
+
"build:watch": "vite build --watch",
|
|
107
|
+
"tailwind": "pnpm tailwind:base --watch ",
|
|
108
|
+
"tailwind:base": "tailwindcss -i ./src/index.css -o ./umd/main.css --minify",
|
|
109
|
+
"test": "vitest run",
|
|
110
|
+
"test:ci": "pnpm test --coverage",
|
|
111
|
+
"test:unit": "pnpm test:ci",
|
|
112
|
+
"lint": "eslint src --ext .js --cache",
|
|
113
|
+
"preship": "pnpm lint",
|
|
114
|
+
"ship": "node ../../.github/scripts/release-apps.js"
|
|
116
115
|
}
|
|
117
|
-
}
|
|
116
|
+
}
|