Skip to content

Commit

Permalink
Release cli 0.0.13 (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat authored Feb 5, 2022
1 parent 63a2bc7 commit 2640fcc
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 26 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,3 @@ jobs:
git-config-email: [email protected]
repository-name: BuilderIO/qwik-raw-data
commit-message: 'Update'

- name: Store benchmark result
if: ${{ github.ref == 'refs/heads/main' }}
uses: benchmark-action/github-action-benchmark@v1
with:
name: Qwik Performance Metrics
tool: 'cargo'
output-file-path: output.txt
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/qwik",
"version": "0.0.16-8",
"version": "0.0.16-9",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"scripts": {
"build": "node scripts --tsc --build --api --platform-binding --wasm",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-qwik",
"version": "0.0.11",
"version": "0.0.13",
"description": "Interactive CLI and API for generating Qwik projects.",
"bin": {
"create-qwik": "create-qwik"
Expand Down
13 changes: 4 additions & 9 deletions src/optimizer/src/rollup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,23 @@ export function qwikRollup(opts: QwikPluginOptions): any {
name: 'qwik',
enforce: 'pre',

config(_, { command }) {
config(config, { command }) {
if (command === 'serve') {
entryStrategy = { type: 'hook' };
if ((config as any).ssr) {
(config as any).ssr.noExternal = false;
}
}
return {
/**
* We only need esbuild on .ts or .js files.
* .tsx & .jsx files are handled by us
*/
esbuild: { include: /\.js$/ },
build: {
polyfillModulePreload: false,
dynamicImportVarsOptions: {
exclude: [/./],
},
},
optimizeDeps: {
include: ['@builder.io/qwik', '@builder.io/qwik/jsx-runtime'],
},
};
},

configureServer(server) {
server.middlewares.use(async (req, res, next) => {
const url = req.originalUrl!;
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite"
},
"devDependencies": {
"@builder.io/qwik": "0.0.16-8",
"@builder.io/qwik": "0.0.16-9",
"typescript": "^4.5.2",
"vite": "2.7.13"
},
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/starter-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite"
},
"devDependencies": {
"@builder.io/qwik": "0.0.16-8",
"@builder.io/qwik": "0.0.16-9",
"typescript": "^4.5.2",
"vite": "2.7.13"
},
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/starter-partytown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite"
},
"devDependencies": {
"@builder.io/qwik": "0.0.16-8",
"@builder.io/qwik": "0.0.16-9",
"typescript": "4.5.2",
"vite": "2.7.13"
},
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite"
},
"devDependencies": {
"@builder.io/qwik": "0.0.16-8",
"@builder.io/qwik": "0.0.16-9",
"typescript": "^4.5.2",
"vite": "2.7.13"
},
Expand Down
2 changes: 1 addition & 1 deletion starters/apps/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite"
},
"devDependencies": {
"@builder.io/qwik": "0.0.16-8",
"@builder.io/qwik": "0.0.16-9",
"typescript": "^4.5.2",
"vite": "2.7.13"
},
Expand Down

0 comments on commit 2640fcc

Please sign in to comment.