We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0474270 commit b2c2274Copy full SHA for b2c2274
.github/workflows/main.yml
@@ -192,7 +192,9 @@ jobs:
192
193
- name: Build Frontend
194
run: |
195
- pnpm build
+ SKIP_CORE=1 pnpm build
196
+ # TODO you should not have to run this twice
197
198
VITE_ISOLATION_ORIGIN="https://puter.zone" pnpm build:chrome
199
tests:
200
name: Run Scramjet Tests
rspack.config.ts
@@ -82,4 +82,8 @@ const injectConfig = defineConfig({
82
},
83
});
84
85
-export default [...scramjetConfig, cdpConfig, injectConfig];
+export default [
86
+ ...(process.env.SKIP_CORE ? [] : scramjetConfig),
87
+ cdpConfig,
88
+ injectConfig,
89
+];
0 commit comments