ssr-plugin-react 6.2.63 → 6.2.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +11 -0
- package/package.json +3 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
ssr-plugin-react:build: cache hit, replaying output
|
|
1
|
+
ssr-plugin-react:build: cache hit, replaying output ec1169cbf39deb6c
|
|
2
2
|
ssr-plugin-react:build:
|
|
3
|
-
ssr-plugin-react:build: > ssr-plugin-react@6.2.
|
|
3
|
+
ssr-plugin-react:build: > ssr-plugin-react@6.2.64 build /home/runner/work/ssr/ssr/packages/plugin-react
|
|
4
4
|
ssr-plugin-react:build: > concurrently "tsc -p ./tsconfig.cjs.json " " tsc -p ./tsconfig.esm.json"
|
|
5
5
|
ssr-plugin-react:build:
|
|
6
|
-
ssr-plugin-react:build: [0] tsc -p ./tsconfig.cjs.json exited with code 0
|
|
7
6
|
ssr-plugin-react:build: [1] tsc -p ./tsconfig.esm.json exited with code 0
|
|
7
|
+
ssr-plugin-react:build: [0] tsc -p ./tsconfig.cjs.json exited with code 0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [6.2.64](https://github.com/zhangyuang/ssr/compare/plugin-react@6.2.63...plugin-react@6.2.64) (2023-07-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* filter babel plugins null string ([837d7b6](https://github.com/zhangyuang/ssr/commit/837d7b6eb7bbcd290cc234591975bc2f82695ed8))
|
|
7
|
+
* react plugin add plugin-proposal close [#297](https://github.com/zhangyuang/ssr/issues/297) ([fdd8253](https://github.com/zhangyuang/ssr/commit/fdd82537f33f8284881ba80cacfa12ce756a109b))
|
|
8
|
+
* ssr build --optimize clear null string add layout~app ([84f5671](https://github.com/zhangyuang/ssr/commit/84f5671f2c87c251cc9e33ce1b8c7423d33e7845))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [6.2.63](https://github.com/zhangyuang/ssr/compare/plugin-react@6.2.62...plugin-react@6.2.63) (2023-06-07)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ssr-plugin-react",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.64",
|
|
4
4
|
"description": "plugin-react for ssr",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -34,6 +34,8 @@
|
|
|
34
34
|
"@babel/core": "^7.0.0",
|
|
35
35
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.5",
|
|
36
36
|
"@babel/plugin-proposal-optional-chaining": "^7.16.5",
|
|
37
|
+
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
38
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
37
39
|
"@babel/plugin-transform-runtime": "^7.9.6",
|
|
38
40
|
"@babel/preset-env": "^7.5.5",
|
|
39
41
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
|