Skip to content

Commit

Permalink
release: v0.3.54
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Feb 17, 2022
1 parent 5568754 commit b766eeb
Show file tree
Hide file tree
Showing 34 changed files with 70 additions and 60 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.3.54](https://github.com/brillout/vite-plugin-ssr/compare/v0.3.53...v0.3.54) (2022-02-17)


### Bug Fixes

* improve internal failure message ([eaa1aba](https://github.com/brillout/vite-plugin-ssr/commit/eaa1ababa81a1a15748c178ebf27b4fb65f6d19e))
* skip empty href links (fix [#263](https://github.com/brillout/vite-plugin-ssr/issues/263)) ([5568754](https://github.com/brillout/vite-plugin-ssr/commit/556875465b4d026f1c02df7d8182766f59f88c6f))



## [0.3.53](https://github.com/brillout/vite-plugin-ssr/compare/v0.3.52...v0.3.53) (2022-02-10)


Expand Down
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-react-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-ssr": "^0.3.53"
"vite-plugin-ssr": "^0.3.54"
}
}
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "^0.3.53"
"vite-plugin-ssr": "^0.3.54"
}
}
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-vue-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-ssr": "^0.3.53",
"vite-plugin-ssr": "^0.3.54",
"vue": "^3.2.31"
}
}
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"cross-env": "^7.0.3",
"express": "^4.17.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "^0.3.53",
"vite-plugin-ssr": "^0.3.54",
"vue": "^3.2.31"
}
}
2 changes: 1 addition & 1 deletion boilerplates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-vite-plugin-ssr",
"version": "0.0.139",
"version": "0.0.140",
"license": "MIT",
"bin": {
"create-vite-plugin-ssr": "index.js"
Expand Down
2 changes: 1 addition & 1 deletion docs/utils/projectInfo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const PROJECT_VERSION = '0.3.53'
const PROJECT_VERSION = '0.3.54'

export const projectInfo = {
projectName: 'vite-plugin-ssr' as const,
Expand Down
2 changes: 1 addition & 1 deletion examples/base-url-cdn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion examples/base-url/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
},
"type": "module"
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"express": "^4.17.2",
"miniflare": "^1.4.1",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "^3.2.31",
"webpack": "^4.46.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/custom-server-render-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/file-structure-domain-driven/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/graphql-apollo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/html-fragments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"express": "^4.17.2",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/i18n-prerender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion examples/path-aliases/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/preact-client-routing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"preact": "^10.6.5",
"preact-render-to-string": "^5.1.19",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/preact-server-routing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"preact": "^10.6.5",
"preact-render-to-string": "^5.1.19",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/react-full/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion examples/react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion examples/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"typescript": "^4.3.2",
"vite": "^2.7.2",
"vite-plugin-solid": "^2.0.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/urql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"typescript": "^4.5.5",
"urql": "^2.1.3",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53"
"vite-plugin-ssr": "0.3.54"
}
}
2 changes: 1 addition & 1 deletion examples/vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"esbuild": "^0.13.12",
"express": "^4.17.1",
"vite": "^2.7.2",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "^3.2.24"
}
}
2 changes: 1 addition & 1 deletion examples/vue-full/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-md": "^0.11.8",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "3.2.31"
}
}
2 changes: 1 addition & 1 deletion examples/vue-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@vue/server-renderer": "^3.2.31",
"express": "^4.17.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "^3.2.31",
"vue-router": "^4.0.12"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"cross-env": "^7.0.3",
"express": "^4.17.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "^3.2.31"
}
}
2 changes: 1 addition & 1 deletion examples/vuex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@vue/server-renderer": "^3.2.31",
"express": "^4.17.2",
"vite": "^2.8.1",
"vite-plugin-ssr": "0.3.53",
"vite-plugin-ssr": "0.3.54",
"vue": "^3.2.31",
"vuex": "^4.0.2"
}
Expand Down
Loading

0 comments on commit b766eeb

Please sign in to comment.