Skip to content

Commit 0599a18

Browse files
committed
Fix script from other project causing website build fail.
1 parent 75dc223 commit 0599a18

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ VERSION := $(shell git describe --tags --abbrev=0)
77

88
format_package_jsons:
99
pnpm syncpack format
10+
manual_postinstall:
11+
cd ${FLUSTER_NATIVE_ROOT}/apps/fluster; pnpm manual_postinstall
1012
format_everything: format_package_jsons
1113
syncpack_fix_mismatches:
1214
npx syncpack fix-mismatches

apps/fluster/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dev": "vite",
2323
"lint": "npx eslint",
2424
"lint:watch": "nodemon --exec 'npx eslint'",
25-
"postinstall": "wireit",
25+
"manual_postinstall": "wireit",
2626
"preview": "vite preview",
2727
"tauri": "tauri",
2828
"typecheck": "tsc --noEmit -p ./tsconfig.json"
@@ -34,7 +34,7 @@
3434
"copy:pdf": {
3535
"command": "cp ../../node_modules/pdfjs-dist/build/pdf.worker.mjs ./public/pdf.worker.mjs"
3636
},
37-
"postinstall": {
37+
"manual_postinstall": {
3838
"dependencies": [
3939
"copy:mathjax",
4040
"copy:pdf"

0 commit comments

Comments
 (0)