Skip to content

Commit

Permalink
release: v0.3.49
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Jan 26, 2022
1 parent dac4841 commit 49325c5
Show file tree
Hide file tree
Showing 31 changed files with 39 additions and 33 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.3.49](https://github.com/brillout/vite-plugin-ssr/compare/v0.3.48...v0.3.49) (2022-01-26)


### Features

* add `baseAssets` option; enable CDN deployments ([dac4841](https://github.com/brillout/vite-plugin-ssr/commit/dac484193fbbe6f2432b0e2ad35197bfba1e378a))



## [0.3.48](https://github.com/brillout/vite-plugin-ssr/compare/v0.3.47...v0.3.48) (2022-01-25)


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 @@ -19,7 +19,7 @@
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-ssr": "^0.3.48"
"vite-plugin-ssr": "^0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "boilerplate-react-ts",
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "^0.3.48"
"vite-plugin-ssr": "^0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "boilerplate-react",
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-vue-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-ssr": "^0.3.48",
"vite-plugin-ssr": "^0.3.49",
"vue": "^3.2.26"
},
"// Needed for Yarn workspaces": "",
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/boilerplate-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.7.12",
"vite-plugin-ssr": "^0.3.48",
"vite-plugin-ssr": "^0.3.49",
"vue": "^3.2.26"
},
"// Needed for Yarn workspaces": "",
Expand Down
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.134",
"version": "0.0.135",
"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.48'
const PROJECT_VERSION = '0.3.49'

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.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"type": "module",
"// Needed for Yarn workspaces": "",
Expand Down
5 changes: 1 addition & 4 deletions examples/base-url/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,18 @@
"// Development": "",
"dev": "node ./server",
"dev:base-url": "cross-env BASE_URL=/some/base-url/ node ./server",

"// Production": "",
"prod": "npm run prod:ssr",
"// With Server-Side Rendering:": "",
"prod:ssr": "npm run build && npm run serve:ssr",
"// With Pre-Rendering:": "",
"prod:ssg": "npm run build && npm run build:prerender && npm run serve:ssg",

"// Build": "",
"build": "npm run build:clean && npm run build:client && npm run build:server",
"build:clean": "rimraf dist/",
"build:client": "cross-env BASE_URL=/some/base-url/ vite build",
"build:server": "cross-env BASE_URL=/some/base-url/ vite build --ssr",
"build:prerender": "vite-plugin-ssr prerender",

"// Production (static) server": "",
"serve:ssr": "cross-env NODE_ENV=production BASE_URL=/some/base-url/ node ./server",
"serve:ssg": "cross-env NODE_ENV=production BASE_URL=/some/base-url/ node ./server/static-server"
Expand All @@ -30,7 +27,7 @@
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"type": "module",
"// Needed for Yarn workspaces": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"express": "^4.17.2",
"miniflare": "^1.4.1",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48",
"vite-plugin-ssr": "0.3.49",
"vue": "^3.2.26",
"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 @@ -25,7 +25,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-cloudflare-workers",
Expand Down
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,7 +13,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-custom-server-render-integration",
Expand Down
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 @@ -18,7 +18,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-file-structure-domain-driven",
Expand Down
2 changes: 1 addition & 1 deletion examples/graphql-apollo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-graphql-apollo",
Expand Down
2 changes: 1 addition & 1 deletion examples/html-fragments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"express": "^4.17.2",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-html-fragments",
Expand Down
2 changes: 1 addition & 1 deletion examples/i18n-prerender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-i18n-prerender",
Expand Down
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.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"type": "module",
"// Needed for Yarn workspaces": "",
Expand Down
2 changes: 1 addition & 1 deletion examples/path-aliases/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-path-aliases",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-full/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-mdx": "3.5.10",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-react-full",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-react-router",
Expand Down
2 changes: 1 addition & 1 deletion examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-react",
Expand Down
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.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"type": "module",
"// Needed for Yarn workspaces": "",
Expand Down
2 changes: 1 addition & 1 deletion examples/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"typescript": "^4.3.2",
"vite": "^2.7.2",
"vite-plugin-solid": "^2.0.1",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-solid",
Expand Down
2 changes: 1 addition & 1 deletion examples/urql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"typescript": "^4.5.4",
"urql": "^2.0.6",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48"
"vite-plugin-ssr": "0.3.49"
},
"// Needed for Yarn workspaces": "",
"name": "example-urql",
Expand Down
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.48",
"vite-plugin-ssr": "0.3.49",
"vue": "^3.2.24"
},
"// Needed for Yarn workspaces": "",
Expand Down
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.4",
"vite": "^2.7.12",
"vite-plugin-md": "^0.11.7",
"vite-plugin-ssr": "0.3.48",
"vite-plugin-ssr": "0.3.49",
"vue": "3.2.26"
},
"// Needed for Yarn workspaces": "",
Expand Down
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.26",
"express": "^4.17.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48",
"vite-plugin-ssr": "0.3.49",
"vue": "^3.2.26",
"vue-router": "^4.0.5"
},
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.7.12",
"vite-plugin-ssr": "0.3.48",
"vite-plugin-ssr": "0.3.49",
"vue": "^3.2.26"
},
"// Needed for Yarn workspaces": "",
Expand Down
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.26",
"express": "^4.17.2",
"vite": "^2.7.12",
"vite-plugin-ssr": "0.3.48",
"vite-plugin-ssr": "0.3.49",
"vue": "^3.2.26",
"vuex": "^4.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion vite-plugin-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-ssr",
"version": "0.3.48",
"version": "0.3.49",
"dependencies": {
"@brillout/json-s": "^0.3.1",
"@brillout/libassert": "^0.5.2",
Expand Down
2 changes: 1 addition & 1 deletion vite-plugin-ssr/shared/utils/projectInfo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const PROJECT_VERSION = '0.3.48'
const PROJECT_VERSION = '0.3.49'

export const projectInfo = {
projectName: 'vite-plugin-ssr' as const,
Expand Down

0 comments on commit 49325c5

Please sign in to comment.