Skip to content

Commit c0f623d

Browse files
committed
Remove unneeded pnpm upgrade call
1 parent 8815270 commit c0f623d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

scripts/isolated-demo-test.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,6 @@ const processDemo = async (demoName: string): Promise<DemoResult> => {
7474
}
7575
};
7676

77-
// Run pnpm upgrade on local packages
78-
try {
79-
execSync('pnpm upgrade "@powersync/*"', { cwd: demoDest, stdio: 'inherit' });
80-
} catch (ex) {
81-
console.error(ex);
82-
result.installResult.state = TestState.FAILED;
83-
result.installResult.error = ex.message;
84-
return result;
85-
}
86-
8777
// Run pnpm install and pnpm build
8878
try {
8979
execSync('pnpm install', { cwd: demoDest, stdio: 'inherit' });

0 commit comments

Comments
 (0)