@modern-js/runtime 2.50.0 → 2.51.0

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.
@@ -54,18 +54,21 @@ const checkIsInline = (chunk, enableInline) => {
54
54
  return false;
55
55
  }
56
56
  };
57
- async function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig) {
57
+ async function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags) {
58
58
  const helmetData = import_react_helmet.default.renderStatic();
59
59
  const callbacks = [
60
60
  (headTemplate) => {
61
61
  return helmetData ? (0, import_helmet.default)(headTemplate, helmetData) : headTemplate;
62
62
  },
63
63
  // @TODO: prefetch scripts of lazy component
64
- injectCss
64
+ (template) => injectCss(template, styledComponentsStyleTags)
65
65
  ];
66
66
  return (0, import_buildTemplate.buildTemplate)(beforeAppTemplate, callbacks);
67
- async function injectCss(template) {
68
- const css = await getCssChunks();
67
+ async function injectCss(template, styledComponentsStyleTags2) {
68
+ let css = await getCssChunks();
69
+ if (styledComponentsStyleTags2) {
70
+ css += styledComponentsStyleTags2;
71
+ }
69
72
  return (0, import_utils.safeReplace)(template, import_constants.CHUNK_CSS_PLACEHOLDER, css);
70
73
  async function getCssChunks() {
71
74
  const { routeManifest, routerContext, routes } = context;
@@ -22,6 +22,7 @@ __export(renderToPipe_exports, {
22
22
  });
23
23
  module.exports = __toCommonJS(renderToPipe_exports);
24
24
  var import_stream = require("stream");
25
+ var import_styled_components = require("styled-components");
25
26
  var import_types = require("../types");
26
27
  var import_common = require("../../../common");
27
28
  var import_template = require("./template");
@@ -33,7 +34,9 @@ var ShellChunkStatus;
33
34
  function renderToPipe(rootElement, context, pluginConfig, options) {
34
35
  var _context_ssrContext;
35
36
  let shellChunkStatus = 0;
36
- const onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) ? "onAllReady" : "onShellReady";
37
+ const forceStream2String = Boolean(process.env.MODERN_JS_STREAM_TO_STRING);
38
+ const onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) || forceStream2String ? "onAllReady" : "onShellReady";
39
+ const sheet = new import_styled_components.ServerStyleSheet();
37
40
  const { ssrContext } = context;
38
41
  const chunkVec = [];
39
42
  const forUserPipe = new Promise((resolve) => {
@@ -42,13 +45,16 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
42
45
  ({ renderToPipeableStream } = require("react-dom/server"));
43
46
  } catch (e) {
44
47
  }
45
- const { pipe } = renderToPipeableStream(rootElement, {
48
+ const root = forceStream2String ? sheet.collectStyles(rootElement) : rootElement;
49
+ let renderLevel = import_types.RenderLevel.SERVER_RENDER;
50
+ const { pipe } = renderToPipeableStream(root, {
46
51
  ...options,
47
52
  nonce: ssrContext === null || ssrContext === void 0 ? void 0 : ssrContext.nonce,
48
53
  [onReady]() {
49
- (0, import_template.getTemplates)(context, import_types.RenderLevel.SERVER_RENDER, pluginConfig).then(({ shellAfter, shellBefore }) => {
50
- var _options_onShellReady;
51
- options === null || options === void 0 ? void 0 : (_options_onShellReady = options.onShellReady) === null || _options_onShellReady === void 0 ? void 0 : _options_onShellReady.call(options);
54
+ const styledComponentsStyleTags = forceStream2String ? sheet.getStyleTags() : "";
55
+ (0, import_template.getTemplates)(context, renderLevel, pluginConfig, styledComponentsStyleTags).then(({ shellAfter, shellBefore }) => {
56
+ var _options_onReady;
57
+ options === null || options === void 0 ? void 0 : (_options_onReady = options[onReady]) === null || _options_onReady === void 0 ? void 0 : _options_onReady.call(options);
52
58
  const injectableTransform = new import_stream.Transform({
53
59
  transform(chunk, _encoding, callback) {
54
60
  try {
@@ -78,12 +84,18 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
78
84
  });
79
85
  },
80
86
  onShellError(error) {
81
- (0, import_template.getTemplates)(context, import_types.RenderLevel.CLIENT_RENDER, pluginConfig).then(({ shellAfter, shellBefore }) => {
87
+ renderLevel = import_types.RenderLevel.CLIENT_RENDER;
88
+ (0, import_template.getTemplates)(context, renderLevel, pluginConfig).then(({ shellAfter, shellBefore }) => {
82
89
  var _options_onShellError;
83
90
  const fallbackHtml = `${shellBefore}${shellAfter}`;
84
91
  resolve(fallbackHtml);
85
92
  options === null || options === void 0 ? void 0 : (_options_onShellError = options.onShellError) === null || _options_onShellError === void 0 ? void 0 : _options_onShellError.call(options, error);
86
93
  });
94
+ },
95
+ onError(error) {
96
+ var _options_onError;
97
+ renderLevel = import_types.RenderLevel.CLIENT_RENDER;
98
+ options === null || options === void 0 ? void 0 : (_options_onError = options.onError) === null || _options_onError === void 0 ? void 0 : _options_onError.call(options, error);
87
99
  }
88
100
  });
89
101
  });
@@ -24,10 +24,10 @@ module.exports = __toCommonJS(template_exports);
24
24
  var import_buildTemplate = require("./buildTemplate.after");
25
25
  var import_bulidTemplate = require("./bulidTemplate.before");
26
26
  const HTML_SEPARATOR = "<!--<?- html ?>-->";
27
- const getTemplates = async (context, renderLevel, pluginConfig) => {
27
+ const getTemplates = async (context, renderLevel, pluginConfig, styledComponentsStyleTags) => {
28
28
  const { ssrContext } = context;
29
29
  const [beforeAppTemplate = "", afterAppHtmlTemplate = ""] = ssrContext.template.split(HTML_SEPARATOR) || [];
30
- const builtBeforeTemplate = await (0, import_bulidTemplate.buildShellBeforeTemplate)(beforeAppTemplate, context, pluginConfig);
30
+ const builtBeforeTemplate = await (0, import_bulidTemplate.buildShellBeforeTemplate)(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags);
31
31
  const builtAfterTemplate = await (0, import_buildTemplate.buildShellAfterTemplate)(afterAppHtmlTemplate, {
32
32
  context,
33
33
  renderLevel
@@ -49,17 +49,17 @@ var checkIsInline = function(chunk, enableInline) {
49
49
  return false;
50
50
  }
51
51
  };
52
- function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig) {
52
+ function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags) {
53
53
  return _buildShellBeforeTemplate.apply(this, arguments);
54
54
  }
55
55
  function _buildShellBeforeTemplate() {
56
- _buildShellBeforeTemplate = _async_to_generator(function(beforeAppTemplate, context, pluginConfig) {
56
+ _buildShellBeforeTemplate = _async_to_generator(function(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags) {
57
57
  var helmetData, callbacks;
58
- function injectCss(template) {
58
+ function injectCss(template, styledComponentsStyleTags2) {
59
59
  return _injectCss.apply(this, arguments);
60
60
  }
61
61
  function _injectCss() {
62
- _injectCss = _async_to_generator(function(template) {
62
+ _injectCss = _async_to_generator(function(template, styledComponentsStyleTags2) {
63
63
  var css;
64
64
  function getCssChunks() {
65
65
  return _getCssChunks.apply(this, arguments);
@@ -150,6 +150,9 @@ function _buildShellBeforeTemplate() {
150
150
  ];
151
151
  case 1:
152
152
  css = _state.sent();
153
+ if (styledComponentsStyleTags2) {
154
+ css += styledComponentsStyleTags2;
155
+ }
153
156
  return [
154
157
  2,
155
158
  safeReplace(template, CHUNK_CSS_PLACEHOLDER, css)
@@ -166,7 +169,9 @@ function _buildShellBeforeTemplate() {
166
169
  return helmetData ? helmetReplace(headTemplate, helmetData) : headTemplate;
167
170
  },
168
171
  // @TODO: prefetch scripts of lazy component
169
- injectCss
172
+ function(template) {
173
+ return injectCss(template, styledComponentsStyleTags);
174
+ }
170
175
  ];
171
176
  return [
172
177
  2,
@@ -3,6 +3,7 @@ import { _ as _instanceof } from "@swc/helpers/_/_instanceof";
3
3
  import { _ as _object_spread } from "@swc/helpers/_/_object_spread";
4
4
  import { _ as _object_spread_props } from "@swc/helpers/_/_object_spread_props";
5
5
  import { Transform } from "stream";
6
+ import { ServerStyleSheet } from "styled-components";
6
7
  import { RenderLevel } from "../types";
7
8
  import { ESCAPED_SHELL_STREAM_END_MARK } from "../../../common";
8
9
  import { getTemplates } from "./template";
@@ -14,7 +15,9 @@ var ShellChunkStatus;
14
15
  function renderToPipe(rootElement, context, pluginConfig, options) {
15
16
  var _context_ssrContext;
16
17
  var shellChunkStatus = 0;
17
- var onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) ? "onAllReady" : "onShellReady";
18
+ var forceStream2String = Boolean(process.env.MODERN_JS_STREAM_TO_STRING);
19
+ var onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) || forceStream2String ? "onAllReady" : "onShellReady";
20
+ var sheet = new ServerStyleSheet();
18
21
  var ssrContext = context.ssrContext;
19
22
  var chunkVec = [];
20
23
  var forUserPipe = new Promise(function(resolve) {
@@ -23,14 +26,17 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
23
26
  renderToPipeableStream = require("react-dom/server").renderToPipeableStream;
24
27
  } catch (e) {
25
28
  }
29
+ var root = forceStream2String ? sheet.collectStyles(rootElement) : rootElement;
30
+ var renderLevel = RenderLevel.SERVER_RENDER;
26
31
  var _obj;
27
- var pipe = renderToPipeableStream(rootElement, _object_spread_props(_object_spread({}, options), (_obj = {
32
+ var pipe = renderToPipeableStream(root, _object_spread_props(_object_spread({}, options), (_obj = {
28
33
  nonce: ssrContext === null || ssrContext === void 0 ? void 0 : ssrContext.nonce
29
34
  }, _define_property(_obj, onReady, function() {
30
- getTemplates(context, RenderLevel.SERVER_RENDER, pluginConfig).then(function(param) {
35
+ var styledComponentsStyleTags = forceStream2String ? sheet.getStyleTags() : "";
36
+ getTemplates(context, renderLevel, pluginConfig, styledComponentsStyleTags).then(function(param) {
31
37
  var shellAfter = param.shellAfter, shellBefore = param.shellBefore;
32
- var _options_onShellReady;
33
- options === null || options === void 0 ? void 0 : (_options_onShellReady = options.onShellReady) === null || _options_onShellReady === void 0 ? void 0 : _options_onShellReady.call(options);
38
+ var _options_onReady;
39
+ options === null || options === void 0 ? void 0 : (_options_onReady = options[onReady]) === null || _options_onReady === void 0 ? void 0 : _options_onReady.call(options);
34
40
  var injectableTransform = new Transform({
35
41
  transform: function transform(chunk, _encoding, callback) {
36
42
  try {
@@ -59,13 +65,18 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
59
65
  resolve(injectableTransform);
60
66
  });
61
67
  }), _define_property(_obj, "onShellError", function onShellError(error) {
62
- getTemplates(context, RenderLevel.CLIENT_RENDER, pluginConfig).then(function(param) {
68
+ renderLevel = RenderLevel.CLIENT_RENDER;
69
+ getTemplates(context, renderLevel, pluginConfig).then(function(param) {
63
70
  var shellAfter = param.shellAfter, shellBefore = param.shellBefore;
64
71
  var _options_onShellError;
65
72
  var fallbackHtml = "".concat(shellBefore).concat(shellAfter);
66
73
  resolve(fallbackHtml);
67
74
  options === null || options === void 0 ? void 0 : (_options_onShellError = options.onShellError) === null || _options_onShellError === void 0 ? void 0 : _options_onShellError.call(options, error);
68
75
  });
76
+ }), _define_property(_obj, "onError", function onError(error) {
77
+ var _options_onError;
78
+ renderLevel = RenderLevel.CLIENT_RENDER;
79
+ options === null || options === void 0 ? void 0 : (_options_onError = options.onError) === null || _options_onError === void 0 ? void 0 : _options_onError.call(options, error);
69
80
  }), _obj))).pipe;
70
81
  });
71
82
  return forUserPipe;
@@ -5,7 +5,7 @@ import { buildShellAfterTemplate } from "./buildTemplate.after";
5
5
  import { buildShellBeforeTemplate } from "./bulidTemplate.before";
6
6
  var HTML_SEPARATOR = "<!--<?- html ?>-->";
7
7
  var getTemplates = function() {
8
- var _ref = _async_to_generator(function(context, renderLevel, pluginConfig) {
8
+ var _ref = _async_to_generator(function(context, renderLevel, pluginConfig, styledComponentsStyleTags) {
9
9
  var ssrContext, _ref2, tmp, beforeAppTemplate, tmp1, afterAppHtmlTemplate, builtBeforeTemplate, builtAfterTemplate;
10
10
  return _ts_generator(this, function(_state) {
11
11
  switch (_state.label) {
@@ -14,7 +14,7 @@ var getTemplates = function() {
14
14
  _ref2 = _sliced_to_array(ssrContext.template.split(HTML_SEPARATOR) || [], 2), tmp = _ref2[0], beforeAppTemplate = tmp === void 0 ? "" : tmp, tmp1 = _ref2[1], afterAppHtmlTemplate = tmp1 === void 0 ? "" : tmp1;
15
15
  return [
16
16
  4,
17
- buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig)
17
+ buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags)
18
18
  ];
19
19
  case 1:
20
20
  builtBeforeTemplate = _state.sent();
@@ -37,7 +37,7 @@ var getTemplates = function() {
37
37
  }
38
38
  });
39
39
  });
40
- return function getTemplates2(context, renderLevel, pluginConfig) {
40
+ return function getTemplates2(context, renderLevel, pluginConfig, styledComponentsStyleTags) {
41
41
  return _ref.apply(this, arguments);
42
42
  };
43
43
  }();
@@ -21,18 +21,21 @@ const checkIsInline = (chunk, enableInline) => {
21
21
  return false;
22
22
  }
23
23
  };
24
- async function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig) {
24
+ async function buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags) {
25
25
  const helmetData = ReactHelmet.renderStatic();
26
26
  const callbacks = [
27
27
  (headTemplate) => {
28
28
  return helmetData ? helmetReplace(headTemplate, helmetData) : headTemplate;
29
29
  },
30
30
  // @TODO: prefetch scripts of lazy component
31
- injectCss
31
+ (template) => injectCss(template, styledComponentsStyleTags)
32
32
  ];
33
33
  return buildTemplate(beforeAppTemplate, callbacks);
34
- async function injectCss(template) {
35
- const css = await getCssChunks();
34
+ async function injectCss(template, styledComponentsStyleTags2) {
35
+ let css = await getCssChunks();
36
+ if (styledComponentsStyleTags2) {
37
+ css += styledComponentsStyleTags2;
38
+ }
36
39
  return safeReplace(template, CHUNK_CSS_PLACEHOLDER, css);
37
40
  async function getCssChunks() {
38
41
  const { routeManifest, routerContext, routes } = context;
@@ -1,4 +1,5 @@
1
1
  import { Transform } from "stream";
2
+ import { ServerStyleSheet } from "styled-components";
2
3
  import { RenderLevel } from "../types";
3
4
  import { ESCAPED_SHELL_STREAM_END_MARK } from "../../../common";
4
5
  import { getTemplates } from "./template";
@@ -10,7 +11,9 @@ var ShellChunkStatus;
10
11
  function renderToPipe(rootElement, context, pluginConfig, options) {
11
12
  var _context_ssrContext;
12
13
  let shellChunkStatus = 0;
13
- const onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) ? "onAllReady" : "onShellReady";
14
+ const forceStream2String = Boolean(process.env.MODERN_JS_STREAM_TO_STRING);
15
+ const onReady = ((_context_ssrContext = context.ssrContext) === null || _context_ssrContext === void 0 ? void 0 : _context_ssrContext.isSpider) || forceStream2String ? "onAllReady" : "onShellReady";
16
+ const sheet = new ServerStyleSheet();
14
17
  const { ssrContext } = context;
15
18
  const chunkVec = [];
16
19
  const forUserPipe = new Promise((resolve) => {
@@ -19,13 +22,16 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
19
22
  ({ renderToPipeableStream } = require("react-dom/server"));
20
23
  } catch (e) {
21
24
  }
22
- const { pipe } = renderToPipeableStream(rootElement, {
25
+ const root = forceStream2String ? sheet.collectStyles(rootElement) : rootElement;
26
+ let renderLevel = RenderLevel.SERVER_RENDER;
27
+ const { pipe } = renderToPipeableStream(root, {
23
28
  ...options,
24
29
  nonce: ssrContext === null || ssrContext === void 0 ? void 0 : ssrContext.nonce,
25
30
  [onReady]() {
26
- getTemplates(context, RenderLevel.SERVER_RENDER, pluginConfig).then(({ shellAfter, shellBefore }) => {
27
- var _options_onShellReady;
28
- options === null || options === void 0 ? void 0 : (_options_onShellReady = options.onShellReady) === null || _options_onShellReady === void 0 ? void 0 : _options_onShellReady.call(options);
31
+ const styledComponentsStyleTags = forceStream2String ? sheet.getStyleTags() : "";
32
+ getTemplates(context, renderLevel, pluginConfig, styledComponentsStyleTags).then(({ shellAfter, shellBefore }) => {
33
+ var _options_onReady;
34
+ options === null || options === void 0 ? void 0 : (_options_onReady = options[onReady]) === null || _options_onReady === void 0 ? void 0 : _options_onReady.call(options);
29
35
  const injectableTransform = new Transform({
30
36
  transform(chunk, _encoding, callback) {
31
37
  try {
@@ -55,12 +61,18 @@ function renderToPipe(rootElement, context, pluginConfig, options) {
55
61
  });
56
62
  },
57
63
  onShellError(error) {
58
- getTemplates(context, RenderLevel.CLIENT_RENDER, pluginConfig).then(({ shellAfter, shellBefore }) => {
64
+ renderLevel = RenderLevel.CLIENT_RENDER;
65
+ getTemplates(context, renderLevel, pluginConfig).then(({ shellAfter, shellBefore }) => {
59
66
  var _options_onShellError;
60
67
  const fallbackHtml = `${shellBefore}${shellAfter}`;
61
68
  resolve(fallbackHtml);
62
69
  options === null || options === void 0 ? void 0 : (_options_onShellError = options.onShellError) === null || _options_onShellError === void 0 ? void 0 : _options_onShellError.call(options, error);
63
70
  });
71
+ },
72
+ onError(error) {
73
+ var _options_onError;
74
+ renderLevel = RenderLevel.CLIENT_RENDER;
75
+ options === null || options === void 0 ? void 0 : (_options_onError = options.onError) === null || _options_onError === void 0 ? void 0 : _options_onError.call(options, error);
64
76
  }
65
77
  });
66
78
  });
@@ -1,10 +1,10 @@
1
1
  import { buildShellAfterTemplate } from "./buildTemplate.after";
2
2
  import { buildShellBeforeTemplate } from "./bulidTemplate.before";
3
3
  const HTML_SEPARATOR = "<!--<?- html ?>-->";
4
- const getTemplates = async (context, renderLevel, pluginConfig) => {
4
+ const getTemplates = async (context, renderLevel, pluginConfig, styledComponentsStyleTags) => {
5
5
  const { ssrContext } = context;
6
6
  const [beforeAppTemplate = "", afterAppHtmlTemplate = ""] = ssrContext.template.split(HTML_SEPARATOR) || [];
7
- const builtBeforeTemplate = await buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig);
7
+ const builtBeforeTemplate = await buildShellBeforeTemplate(beforeAppTemplate, context, pluginConfig, styledComponentsStyleTags);
8
8
  const builtAfterTemplate = await buildShellAfterTemplate(afterAppHtmlTemplate, {
9
9
  context,
10
10
  renderLevel
@@ -56,7 +56,7 @@ interface DataFunctionArgs<D = any> {
56
56
  params: Params;
57
57
  context?: D;
58
58
  }
59
- export type LoaderFunctionArgs<P extends Record<string, unknown> = any> = DataFunctionArgs<RequestContext<P>>;
59
+ export type LoaderFunctionArgs<P extends Record<string, unknown> = Record<string, unknown>> = DataFunctionArgs<RequestContext<P>>;
60
60
  declare type DataFunctionValue = Response | NonNullable<unknown> | null;
61
61
  export type LoaderFunction = <P extends Record<string, unknown> = Record<string, unknown>>(args: LoaderFunctionArgs<P>) => Promise<DataFunctionValue> | DataFunctionValue;
62
62
  export {};
@@ -1,2 +1,2 @@
1
1
  import { RuntimeContext, SSRPluginConfig } from '../types';
2
- export declare function buildShellBeforeTemplate(beforeAppTemplate: string, context: RuntimeContext, pluginConfig: SSRPluginConfig): Promise<string>;
2
+ export declare function buildShellBeforeTemplate(beforeAppTemplate: string, context: RuntimeContext, pluginConfig: SSRPluginConfig, styledComponentsStyleTags?: string): Promise<string>;
@@ -3,4 +3,4 @@ export type InjectTemplate = {
3
3
  shellBefore: string;
4
4
  shellAfter: string;
5
5
  };
6
- export declare const getTemplates: (context: RuntimeContext, renderLevel: RenderLevel, pluginConfig: SSRPluginConfig) => Promise<InjectTemplate>;
6
+ export declare const getTemplates: (context: RuntimeContext, renderLevel: RenderLevel, pluginConfig: SSRPluginConfig, styledComponentsStyleTags?: string) => Promise<InjectTemplate>;
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.50.0",
18
+ "version": "2.51.0",
19
19
  "engines": {
20
20
  "node": ">=14.17.6"
21
21
  },
@@ -170,10 +170,10 @@
170
170
  "react-side-effect": "^2.1.1",
171
171
  "styled-components": "^5.3.1",
172
172
  "@swc/helpers": "0.5.3",
173
- "@modern-js/plugin": "2.50.0",
174
- "@modern-js/types": "2.50.0",
175
- "@modern-js/utils": "2.50.0",
176
- "@modern-js/runtime-utils": "2.50.0"
173
+ "@modern-js/types": "2.51.0",
174
+ "@modern-js/plugin": "2.51.0",
175
+ "@modern-js/utils": "2.51.0",
176
+ "@modern-js/runtime-utils": "2.51.0"
177
177
  },
178
178
  "peerDependencies": {
179
179
  "react": ">=17",
@@ -194,11 +194,11 @@
194
194
  "ts-jest": "^29.1.0",
195
195
  "typescript": "^5",
196
196
  "webpack": "^5.91.0",
197
- "@modern-js/app-tools": "2.50.0",
198
- "@modern-js/server-core": "2.50.0",
199
- "@modern-js/core": "2.50.0",
200
- "@scripts/build": "2.50.0",
201
- "@scripts/jest-config": "2.50.0"
197
+ "@modern-js/app-tools": "2.51.0",
198
+ "@modern-js/core": "2.51.0",
199
+ "@scripts/build": "2.51.0",
200
+ "@modern-js/server-core": "2.51.0",
201
+ "@scripts/jest-config": "2.51.0"
202
202
  },
203
203
  "sideEffects": false,
204
204
  "publishConfig": {