Skip to content

Commit

Permalink
chore: 🤖 enable qwik template
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY committed Feb 8, 2025
1 parent 4dc5443 commit 53ab0fd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 1 addition & 2 deletions apps/qwik-jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"preview": "serve dist"
},
"devDependencies": {
"serve": "^14.2.3",
"vite": "^6.0.0"
"serve": "^14.2.3"
},
"dependencies": {
"@builder.io/qwik": "^1.6.0"
Expand Down
5 changes: 4 additions & 1 deletion apps/qwik-jsx/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'rolldown-vite'
import { qwikVite } from '@builder.io/qwik/optimizer'

// https://vitejs.dev/config/
Expand All @@ -8,4 +8,7 @@ export default defineConfig({
csr: true,
}),
],
experimental: {
enableNativePlugin: true,
}
})
5 changes: 4 additions & 1 deletion apps/qwik-tsx/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'rolldown-vite'
import { qwikVite } from '@builder.io/qwik/optimizer'

// https://vitejs.dev/config/
Expand All @@ -8,4 +8,7 @@ export default defineConfig({
csr: true,
}),
],
experimental: {
enableNativePlugin: true
}
})
3 changes: 1 addition & 2 deletions packages/build-tester/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ const list = fs.readdirSync(appDir);
const urlRegex = /http:\/\/(?:www\.)?[a-zA-Z0-9-]+\:\d+/g

// ignore app list
const ignoreList = ["qwik-jsx", "qwik-tsx"];
const ignoreList = [];
const includeList = process.argv.slice(2);
console.log(`includeList: `, includeList)

let hasError = false;
for (let appName of list) {
Expand Down
3 changes: 0 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 53ab0fd

Please sign in to comment.