ssr-plugin-react 5.6.29 → 5.6.31

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.6.31](https://github.com/ykfe/ssr/compare/v5.6.30...v5.6.31) (2021-10-21)
7
+
8
+ **Note:** Version bump only for package ssr-plugin-react
9
+
10
+
11
+
12
+
13
+
6
14
  ## [5.6.27](https://github.com/ykfe/ssr/compare/v5.6.26...v5.6.27) (2021-10-14)
7
15
 
8
16
 
package/README.md CHANGED
@@ -100,6 +100,9 @@
100
100
  <td align="center" style="height: 100px"><a href="https://m.film.qq.com/x/tva-vip-center/" target="_blank"><img src="https://res.wx.qq.com/op_res/x7sWI9AfUK1QwH0EDhKp4e_bGWxYOQ_1RlZqBFy9JntJzaE4aRzNhVgmxLNloAFpSQ-mBr9X9pux3QlV9QHHvQ" width="200px;margin: 20px 0" alt="腾讯视频"/><br />
101
101
  <a href="https://m.film.qq.com/x/tva-vip-center/" target="_bvlank"><b>腾讯视频
102
102
  </b></a></td>
103
+ <td align="center" style="height: 100px"><a href="https://blog.dreamer2q.wang/" target="_blank"><img src="https://res.wx.qq.com/op_res/MxxGgjPFRiTgjiReUefs2aMce-SgNvxxTB9U87YYhcOu6KPw9er7r2Lc0ne-b90nFstTUpc8REDwpxfUreKV1g" width="200px;margin: 20px 0" alt="Dream2qBlog"/><br />
104
+ <a href="https://blog.dreamer2q.wang/" target="_bvlank"><b>个人博客
105
+ </b></a></td>
103
106
  </tr>
104
107
  </table>
105
108
 
@@ -83,7 +83,7 @@ const getBaseConfig = (chain, isServer) => {
83
83
  .rule('compileBabel')
84
84
  .test(/\.(js|mjs|jsx|ts|tsx)$/)
85
85
  .exclude
86
- .add(/node_modules/)
86
+ .add(/node_modules|core-js/)
87
87
  .end();
88
88
  const module = chain.module
89
89
  .rule('compileBabelForExtraModule')
@@ -80,7 +80,7 @@ const getBaseConfig = (chain, isServer) => {
80
80
  .rule('compileBabel')
81
81
  .test(/\.(js|mjs|jsx|ts|tsx)$/)
82
82
  .exclude
83
- .add(/node_modules/)
83
+ .add(/node_modules|core-js/)
84
84
  .end();
85
85
  const module = chain.module
86
86
  .rule('compileBabelForExtraModule')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssr-plugin-react",
3
- "version": "5.6.29",
3
+ "version": "5.6.31",
4
4
  "description": "plugin-react for ssr",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./esm/index.js",
@@ -72,5 +72,5 @@
72
72
  "@types/webpack": "^4.41.10",
73
73
  "ssr-types-react": "^5.6.29"
74
74
  },
75
- "gitHead": "c192d40ca012968d7d48f36de61b73c921a0de81"
75
+ "gitHead": "8da1715438cebeae99cfa30355a1563e1823a0d9"
76
76
  }
@@ -88,7 +88,7 @@ const getBaseConfig = (chain: WebpackChain, isServer: boolean) => {
88
88
  .rule('compileBabel')
89
89
  .test(/\.(js|mjs|jsx|ts|tsx)$/)
90
90
  .exclude
91
- .add(/node_modules/)
91
+ .add(/node_modules|core-js/)
92
92
  .end()
93
93
 
94
94
  const module = chain.module