Skip to content

Commit

Permalink
release: cli@6.2.78,utils@6.2.138
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyuang committed Jul 26, 2024
1 parent 9322a89 commit 380608e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 3 deletions.
9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [6.2.78](https://github.com/zhangyuang/ssr/compare/cli@6.2.76...cli@6.2.78) (2024-07-26)


### Features

* remove bundleConfigPlatform add common-utils to esbuild external ([9322a89](https://github.com/zhangyuang/ssr/commit/9322a8998f339ae9cf1c2107f71dfc91ff75dd0f))



## [6.2.77](https://github.com/zhangyuang/ssr/compare/cli@6.2.76...cli@6.2.77) (2024-07-26)


Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ssr",
"version": "6.2.77",
"version": "6.2.78",
"description": "cli for react/vue2/vue3 ssr deploy on serverless or tradtional web server",
"main": "./cjs/index.js",
"module": "./esm/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [6.2.138](https://github.com/zhangyuang/ssr/compare/utils@6.2.136...utils@6.2.138) (2024-07-26)


### Features

* reduce generate html css insert ([9315095](https://github.com/zhangyuang/ssr/commit/931509564da42ccdb4ed0afa2ee028ccf859d88f))
* remove bundleConfigPlatform add common-utils to esbuild external ([9322a89](https://github.com/zhangyuang/ssr/commit/9322a8998f339ae9cf1c2107f71dfc91ff75dd0f))



## [6.2.137](https://github.com/zhangyuang/ssr/compare/utils@6.2.136...utils@6.2.137) (2024-07-26)


Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ssr-common-utils",
"version": "6.2.137",
"version": "6.2.138",
"description": "utils for serverless ssr",
"types": "./esm/types.d.ts",
"main": "./cjs/server/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/server/cwd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const esbuildTransform = async (from: string, to: string) => {
platform: 'node',
mainFields: ['module', 'main'],
treeShaking: true,
external: ['ssr-common-utils']
external: process.env.BUNDLECONFIG ? ['ssr-common-utils'] : undefined
}
)
}
Expand Down

0 comments on commit 380608e

Please sign in to comment.