Skip to content

Commit 095b8d0

Browse files
committed
Site search
1 parent 55e538a commit 095b8d0

9 files changed

Lines changed: 1296 additions & 20 deletions

File tree

.github/workflows/pending-changes.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,20 @@ jobs:
99
- uses: pnpm/action-setup@v2
1010
with:
1111
version: 10
12+
1213
- name: Install dependencies
1314
run: pnpm install --frozen-lockfile --recursive
15+
env:
16+
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
17+
18+
- name: Setup Google Chrome
19+
uses: browser-actions/setup-chrome@v2
20+
id: setup-chrome
21+
with:
22+
install-dependencies: true
23+
1424
- uses: nickcharlton/diff-check@main
1525
with:
16-
command: pnpm run compile
26+
command: pnpm dev & pnpm run compile
27+
env:
28+
CHROME_PATH: ${{ steps.setup-chrome.outputs.chrome-path }}

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@
2020
],
2121
"scripts": {
2222
"dev": "vite",
23-
"dev:integrations": "concurrently -k \"pnpm run dev:integrations:next\" \"pnpm run dev:integrations:vike\" \"pnpm run dev:integrations:vite\"",
23+
"dev:integrations": "pnpm run /^dev:integrations:.*/",
2424
"dev:integrations:next": "pnpm -C integrations/next/ run dev",
2525
"dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
2626
"dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
27-
"build": "pnpm run build:lib && pnpm run build:docs",
27+
"build": "pnpm run /^build:.*/",
2828
"build:docs": "cross-env TARGET=docs vite build",
2929
"build:lib": "cross-env TARGET=lib vite build",
30-
"compile": "pnpm run compile:docs && pnpm run compile:examples",
30+
"compile": "pnpm run /^compile:.*/",
3131
"compile:docs": "tsx ./scripts/compile-docs",
3232
"compile:examples": "tsx ./scripts/compile-examples",
33+
"compile:search-index": "tsx ./scripts/compile-search-index",
3334
"compress:og-image": "tsx ./scripts/compress-og-image",
3435
"e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps",
3536
"e2e:test": "pnpm -C integrations/tests run test",
@@ -91,11 +92,12 @@
9192
"postcss": "^8.5.6",
9293
"prettier": "3.6.2",
9394
"prettier-plugin-tailwindcss": "^0.7.1",
95+
"puppeteer": "^24.38.0",
9496
"react": "^19.2.3",
9597
"react-docgen-typescript": "^2.4.0",
9698
"react-dom": "^19.2.3",
9799
"react-error-boundary": "^6.0.0",
98-
"react-lib-tools": "0.0.35",
100+
"react-lib-tools": "^0.0.44",
99101
"react-router-dom": "^7.6.3",
100102
"rimraf": "^6.1.2",
101103
"rollup-plugin-terser": "^7.0.2",

0 commit comments

Comments
 (0)