@yoast/ai-insights-client 1.4.82 → 1.4.84
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yoast/ai-insights-client",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.84",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "A React component library for AI-powered brand analysis and insights",
|
|
7
7
|
"keywords": [
|
|
@@ -32,21 +32,24 @@
|
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
34
|
"dev": "vite",
|
|
35
|
-
"clean": "rm -rf dist/*",
|
|
35
|
+
"clean": "rm -rf dist/* dist-app/*",
|
|
36
36
|
"ts:watch": "tsc --noEmit --watch --preserveWatchOutput",
|
|
37
|
-
"build": "yarn
|
|
37
|
+
"build": "yarn build:lib",
|
|
38
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
39
|
+
"build:app": "vite build --config vite.config.app.ts",
|
|
40
|
+
"build:all": "yarn build:lib && yarn build:app",
|
|
38
41
|
"buildtsc": "yarn clean && tsc -b",
|
|
39
|
-
"buildvite": "yarn
|
|
42
|
+
"buildvite": "yarn build:lib",
|
|
40
43
|
"build:analyze": "npm run build && npx vite-bundle-analyzer dist",
|
|
41
44
|
"build:types": "tsc -p tsconfig.lib.json",
|
|
42
|
-
"build:lib": "yarn build",
|
|
43
45
|
"lint": "eslint .",
|
|
44
46
|
"test": "vitest",
|
|
45
47
|
"test:ui": "vitest --ui",
|
|
46
48
|
"test:run": "vitest run",
|
|
47
49
|
"preview": "vite preview",
|
|
50
|
+
"preview:app": "vite preview --outDir dist-app",
|
|
48
51
|
"analyze:ui-lib": "node scripts/generate-ui-lib-types.js",
|
|
49
|
-
"prepublishOnly": "yarn build",
|
|
52
|
+
"prepublishOnly": "yarn build:lib",
|
|
50
53
|
"orval:dev": "API=http://localhost:8000 yarn orval",
|
|
51
54
|
"orval:prod": "API=https://ai-insights-api.vercel.app yarn orval",
|
|
52
55
|
"refreshpush": "yarn buildvite; yalc push; docker restart myyoast-client;"
|