Skip to content

Commit 8b054eb

Browse files
committed
Site search
1 parent 9f15b32 commit 8b054eb

9 files changed

Lines changed: 1330 additions & 14 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: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@
2020
],
2121
"scripts": {
2222
"dev": "vite",
23-
"dev:integrations": "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",
28-
"build:docs": "TARGET=docs vite build",
29-
"build:lib": "TARGET=lib vite build",
30-
"compile": "pnpm run compile:docs && pnpm run compile:examples",
27+
"build": "pnpm run /^build:.*/",
28+
"build:docs": "cross-env TARGET=docs vite build",
29+
"build:lib": "cross-env TARGET=lib vite build",
30+
"compile": "pnpm run --sequential /^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",
@@ -87,7 +88,7 @@
8788
"react-docgen-typescript": "^2.4.0",
8889
"react-dom": "^19.2.3",
8990
"react-error-boundary": "^6.0.0",
90-
"react-lib-tools": "^0.0.34",
91+
"react-lib-tools": "^0.0.44",
9192
"react-router-dom": "^7.6.3",
9293
"rollup-plugin-terser": "^7.0.2",
9394
"rollup-plugin-visualizer": "^6.0.3",

0 commit comments

Comments
 (0)