Skip to content

Commit

Permalink
fix: build of crx
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Oct 28, 2024
1 parent d2e04a0 commit 2733df7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/app/vite-utils/vite.base.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function resolveLinkDeps() {
const baseConfig: UserConfig = {
base: process.env.BASE_URL || '/',
build: {
target: 'es2020',
target: 'esnext',
sourcemap: true,
outDir: process.env.APP_DIST || 'dist',
rollupOptions: {
Expand All @@ -46,12 +46,12 @@ const baseConfig: UserConfig = {
port: Number(process.env.PORT),
strictPort: true,
watch: {
ignored: ['**/playwright-html/**'], // Ignore changes in any 'playwright' folder
ignored: ['**/playwright*/**'], // Ignore changes in any 'playwright' folder
},
},
optimizeDeps: {
esbuildOptions: {
target: 'es2020',
target: 'esnext',
supported: {
bigint: true,
},
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outputs": ["dist/**"]
},
"build:crx": {
"dependsOn": ["^build"],
"dependsOn": ["ts:check"],
"outputs": ["dist-crx*/**", "dist/fuel-wallet*.zip"]
},
"build:web": {
Expand Down

0 comments on commit 2733df7

Please sign in to comment.