File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 "typescript" : " ^5.7.2"
99 },
1010 "scripts" : {
11- "build" : " npm run build --workspaces --if-present" ,
12- "clean" : " npm run clean --workspaces --if-present" ,
13- "lint" : " npm run lint --workspaces --if-present" ,
14- "test" : " npm run test --workspaces --if-present"
11+ "build" : " pnpm --recursive run build --if-present" ,
12+ "clean" : " pnpm --recursive run clean --if-present" ,
13+ "lint" : " pnpm --recursive run lint --if-present" ,
14+ "test" : " pnpm --recursive run test --if-present"
1515 }
1616}
Original file line number Diff line number Diff line change 77 "." : " ./dist/index.js"
88 },
99 "scripts" : {
10+ "preinstall" : " skargo build -r --lib --manifest-path=../skiplang/ffi/Skargo.toml --out-dir=../../build/skipruntime" ,
1011 "prepare" : " skargo build -r --lib --manifest-path=../skiplang/ffi/Skargo.toml --out-dir=../../build/skipruntime" ,
1112 "build" : " skargo build -r --lib --manifest-path=../skiplang/ffi/Skargo.toml --out-dir=../../build/skipruntime && tsc && SKIPRUNTIME=$(realpath ../../build/skipruntime) node-gyp configure && node-gyp build" ,
1213 "clean" : " rm -rf dist && node-gyp clean" ,
Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ export SKIPRUNTIME
99
1010.PHONY : check-src
1111check-src : build
12- ../bin/cd_sh .. " pnpm run lint -w skdb"
12+ ../bin/cd_sh .. " pnpm run lint --filter= skdb"
1313
1414.PHONY : check-tests
1515check-tests : build
16- ../bin/cd_sh .. " pnpm run lint -w skdb-tests"
16+ ../bin/cd_sh .. " pnpm run lint --filter= skdb-tests"
1717
1818.PHONY : check-all
1919check-all : check-src check-tests
2020
2121.PHONY : build
2222build :
23- ../bin/cd_sh .. " pnpm install && pnpm run build -w skdb -w skdb-tests"
23+ ../bin/cd_sh .. " pnpm install && pnpm run build --filter= skdb --filter= skdb-tests"
2424
2525.PHONY : clean
2626clean :
You can’t perform that action at this time.
0 commit comments