react-scripts-intlayer 7.5.0-canary.1 → 7.5.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.
- package/dist/cjs/_virtual/rolldown_runtime.cjs +1 -7
- package/dist/cjs/cli/react-scripts-intlayer.cjs +6 -6
- package/dist/cjs/cli/react-scripts-intlayer.cjs.map +1 -1
- package/dist/cjs/intlayerCracoPlugin.cjs +6 -6
- package/dist/cjs/intlayerCracoPlugin.cjs.map +1 -1
- package/dist/esm/_virtual/rolldown_runtime.mjs +1 -7
- package/package.json +6 -6
|
@@ -21,13 +21,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
21
21
|
}
|
|
22
22
|
return to;
|
|
23
23
|
};
|
|
24
|
-
var __reExport = (target, mod, secondTarget,
|
|
25
|
-
if (symbols) {
|
|
26
|
-
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
27
|
-
secondTarget && __defProp(secondTarget, Symbol.toStringTag, { value: "Module" });
|
|
28
|
-
}
|
|
29
|
-
__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default");
|
|
30
|
-
};
|
|
24
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
31
25
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
32
26
|
value: mod,
|
|
33
27
|
enumerable: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
|
|
3
|
-
let
|
|
3
|
+
let _intlayer_config = require("@intlayer/config");
|
|
4
4
|
let node_child_process = require("node:child_process");
|
|
5
5
|
|
|
6
6
|
//#region src/cli/react-scripts-intlayer.ts
|
|
@@ -18,7 +18,7 @@ switch (script) {
|
|
|
18
18
|
case "start":
|
|
19
19
|
case "test": {
|
|
20
20
|
const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : [];
|
|
21
|
-
const scriptPath = (0,
|
|
21
|
+
const scriptPath = (0, _intlayer_config.getProjectRequire)().resolve(`@craco/craco/dist/scripts/${script}`);
|
|
22
22
|
const scriptArgs = args.slice(scriptIndex + 1);
|
|
23
23
|
const child = (0, node_child_process.spawnSync)("node", nodeArgs.concat(scriptPath).concat([
|
|
24
24
|
...scriptArgs,
|
|
@@ -26,12 +26,12 @@ switch (script) {
|
|
|
26
26
|
"./node_modules/react-scripts-intlayer/dist/cjs/craco.config.cjs"
|
|
27
27
|
]), { stdio: "inherit" });
|
|
28
28
|
if (child.signal) {
|
|
29
|
-
if (child.signal === "SIGKILL") (0,
|
|
29
|
+
if (child.signal === "SIGKILL") (0, _intlayer_config.logger)(`
|
|
30
30
|
The build failed because the process exited too early.
|
|
31
31
|
This probably means the system ran out of memory or someone called
|
|
32
32
|
\`kill -9\` on the process.
|
|
33
33
|
`);
|
|
34
|
-
else if (child.signal === "SIGTERM") (0,
|
|
34
|
+
else if (child.signal === "SIGTERM") (0, _intlayer_config.logger)(`
|
|
35
35
|
The build failed because the process exited too early.
|
|
36
36
|
Someone might have called \`kill\` or \`killall\`, or the system could
|
|
37
37
|
be shutting down.
|
|
@@ -42,8 +42,8 @@ switch (script) {
|
|
|
42
42
|
break;
|
|
43
43
|
}
|
|
44
44
|
default:
|
|
45
|
-
(0,
|
|
46
|
-
(0,
|
|
45
|
+
(0, _intlayer_config.logger)(`Unknown script "${script}".`);
|
|
46
|
+
(0, _intlayer_config.logger)("Perhaps you need to update craco?");
|
|
47
47
|
break;
|
|
48
48
|
}
|
|
49
49
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react-scripts-intlayer.cjs","names":[],"sources":["../../../src/cli/react-scripts-intlayer.ts"],"sourcesContent":["#!/usr/bin/env node\n\n/**\n * To make the setup easier, we are using craco to override the webpack configuration.\n * This script is used to run the craco scripts with the custom configuration.\n *\n * The script is based on the original craco script from create-react-app.\n */\n\nimport { spawnSync } from 'node:child_process';\nimport { getProjectRequire, logger } from '@intlayer/config';\n\nconst args = process.argv.slice(2);\nconst scriptIndex = args.findIndex(\n (index) => index === 'build' || index === 'start' || index === 'test'\n);\nconst script = scriptIndex === -1 ? args[0] : args[scriptIndex];\n\nswitch (script) {\n case 'build':\n case 'start':\n case 'test': {\n const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : [];\n const scriptPath = getProjectRequire().resolve(\n `@craco/craco/dist/scripts/${script}`\n );\n\n const scriptArgs = args.slice(scriptIndex + 1);\n const processArgs = nodeArgs\n .concat(scriptPath)\n .concat([\n ...scriptArgs,\n '--config',\n './node_modules/react-scripts-intlayer/dist/cjs/craco.config.cjs',\n ]);\n\n const child = spawnSync('node', processArgs, {\n stdio: 'inherit',\n });\n\n if (child.signal) {\n if (child.signal === 'SIGKILL') {\n logger(`\n The build failed because the process exited too early.\n This probably means the system ran out of memory or someone called\n \\`kill -9\\` on the process.\n `);\n } else if (child.signal === 'SIGTERM') {\n logger(`\n The build failed because the process exited too early.\n Someone might have called \\`kill\\` or \\`killall\\`, or the system could\n be shutting down.\n `);\n }\n\n process.exit(1);\n }\n\n process.exit(child.status ?? undefined);\n break;\n }\n default:\n logger(`Unknown script \"${script}\".`);\n logger('Perhaps you need to update craco?');\n break;\n}\n"],"mappings":";;;;;;;;;;;;AAYA,MAAM,OAAO,QAAQ,KAAK,MAAM,EAAE;AAClC,MAAM,cAAc,KAAK,WACtB,UAAU,UAAU,WAAW,UAAU,WAAW,UAAU,OAChE;AACD,MAAM,SAAS,gBAAgB,KAAK,KAAK,KAAK,KAAK;AAEnD,QAAQ,QAAR;CACE,KAAK;CACL,KAAK;CACL,KAAK,QAAQ;EACX,MAAM,WAAW,cAAc,IAAI,KAAK,MAAM,GAAG,YAAY,GAAG,EAAE;EAClE,MAAM,
|
|
1
|
+
{"version":3,"file":"react-scripts-intlayer.cjs","names":[],"sources":["../../../src/cli/react-scripts-intlayer.ts"],"sourcesContent":["#!/usr/bin/env node\n\n/**\n * To make the setup easier, we are using craco to override the webpack configuration.\n * This script is used to run the craco scripts with the custom configuration.\n *\n * The script is based on the original craco script from create-react-app.\n */\n\nimport { spawnSync } from 'node:child_process';\nimport { getProjectRequire, logger } from '@intlayer/config';\n\nconst args = process.argv.slice(2);\nconst scriptIndex = args.findIndex(\n (index) => index === 'build' || index === 'start' || index === 'test'\n);\nconst script = scriptIndex === -1 ? args[0] : args[scriptIndex];\n\nswitch (script) {\n case 'build':\n case 'start':\n case 'test': {\n const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : [];\n const scriptPath = getProjectRequire().resolve(\n `@craco/craco/dist/scripts/${script}`\n );\n\n const scriptArgs = args.slice(scriptIndex + 1);\n const processArgs = nodeArgs\n .concat(scriptPath)\n .concat([\n ...scriptArgs,\n '--config',\n './node_modules/react-scripts-intlayer/dist/cjs/craco.config.cjs',\n ]);\n\n const child = spawnSync('node', processArgs, {\n stdio: 'inherit',\n });\n\n if (child.signal) {\n if (child.signal === 'SIGKILL') {\n logger(`\n The build failed because the process exited too early.\n This probably means the system ran out of memory or someone called\n \\`kill -9\\` on the process.\n `);\n } else if (child.signal === 'SIGTERM') {\n logger(`\n The build failed because the process exited too early.\n Someone might have called \\`kill\\` or \\`killall\\`, or the system could\n be shutting down.\n `);\n }\n\n process.exit(1);\n }\n\n process.exit(child.status ?? undefined);\n break;\n }\n default:\n logger(`Unknown script \"${script}\".`);\n logger('Perhaps you need to update craco?');\n break;\n}\n"],"mappings":";;;;;;;;;;;;AAYA,MAAM,OAAO,QAAQ,KAAK,MAAM,EAAE;AAClC,MAAM,cAAc,KAAK,WACtB,UAAU,UAAU,WAAW,UAAU,WAAW,UAAU,OAChE;AACD,MAAM,SAAS,gBAAgB,KAAK,KAAK,KAAK,KAAK;AAEnD,QAAQ,QAAR;CACE,KAAK;CACL,KAAK;CACL,KAAK,QAAQ;EACX,MAAM,WAAW,cAAc,IAAI,KAAK,MAAM,GAAG,YAAY,GAAG,EAAE;EAClE,MAAM,sDAAgC,CAAC,QACrC,6BAA6B,SAC9B;EAED,MAAM,aAAa,KAAK,MAAM,cAAc,EAAE;EAS9C,MAAM,0CAAkB,QARJ,SACjB,OAAO,WAAW,CAClB,OAAO;GACN,GAAG;GACH;GACA;GACD,CAAC,EAEyC,EAC3C,OAAO,WACR,CAAC;AAEF,MAAI,MAAM,QAAQ;AAChB,OAAI,MAAM,WAAW,UACnB,8BAAO;;;;cAID;YACG,MAAM,WAAW,UAC1B,8BAAO;;;;cAID;AAGR,WAAQ,KAAK,EAAE;;AAGjB,UAAQ,KAAK,MAAM,UAAU,OAAU;AACvC;;CAEF;AACE,+BAAO,mBAAmB,OAAO,IAAI;AACrC,+BAAO,oCAAoC;AAC3C"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
|
|
2
|
-
let
|
|
3
|
-
let
|
|
2
|
+
let _intlayer_config = require("@intlayer/config");
|
|
3
|
+
let _intlayer_webpack = require("@intlayer/webpack");
|
|
4
4
|
|
|
5
5
|
//#region src/intlayerCracoPlugin.ts
|
|
6
6
|
var intlayerConfig, overrideWebpackConfig, overrideCracoConfig, intlayerCracoPlugin;
|
|
7
7
|
var init_intlayerCracoPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
8
|
-
intlayerConfig = (0,
|
|
8
|
+
intlayerConfig = (0, _intlayer_config.getConfiguration)();
|
|
9
9
|
overrideWebpackConfig = ({ webpackConfig }) => {
|
|
10
10
|
webpackConfig.externals = {
|
|
11
11
|
...typeof webpackConfig.externals === "object" ? webpackConfig.externals : {},
|
|
@@ -28,7 +28,7 @@ var init_intlayerCracoPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
28
28
|
...cracoConfig.webpack,
|
|
29
29
|
plugins: {
|
|
30
30
|
...cracoConfig.webpack?.plugins,
|
|
31
|
-
add: [...cracoConfig.webpack?.plugins?.add ?? [], new
|
|
31
|
+
add: [...cracoConfig.webpack?.plugins?.add ?? [], new _intlayer_webpack.IntlayerPlugin(intlayerConfig)]
|
|
32
32
|
},
|
|
33
33
|
configure: {
|
|
34
34
|
...cracoConfig.webpack?.configure ?? {},
|
|
@@ -36,7 +36,7 @@ var init_intlayerCracoPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
36
36
|
...cracoConfig.webpack?.configure?.resolve ?? {},
|
|
37
37
|
fallback: {
|
|
38
38
|
...cracoConfig.webpack?.configure?.resolve?.fallback ?? {},
|
|
39
|
-
process: (0,
|
|
39
|
+
process: (0, _intlayer_config.getProjectRequire)().resolve("process/browser"),
|
|
40
40
|
fs: false,
|
|
41
41
|
module: false,
|
|
42
42
|
path: false,
|
|
@@ -46,7 +46,7 @@ var init_intlayerCracoPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
46
46
|
},
|
|
47
47
|
alias: {
|
|
48
48
|
...cracoConfig.webpack?.alias,
|
|
49
|
-
...(0,
|
|
49
|
+
...(0, _intlayer_config.getAlias)({ configuration: intlayerConfig })
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intlayerCracoPlugin.cjs","names":["IntlayerWebpackPlugin","intlayerCracoPlugin: CracoPlugin"],"sources":["../../src/intlayerCracoPlugin.ts"],"sourcesContent":["// craco-intlayer-plugin.ts\n\n// @ts-nocheck\n\nimport type {\n CracoConfig,\n CracoConfigOverride,\n CracoPlugin,\n WebpackConfigOverride,\n} from '@craco/types';\nimport {\n getAlias,\n getConfiguration,\n getProjectRequire,\n} from '@intlayer/config';\nimport { IntlayerPlugin as IntlayerWebpackPlugin } from '@intlayer/webpack';\nimport type { Configuration as WebpackConfig } from 'webpack';\n\n// Get Intlayer configuration\nconst intlayerConfig = getConfiguration();\n\n/**\n * Override the final CRA Webpack config.\n */\nexport const overrideWebpackConfig = ({\n webpackConfig,\n}: WebpackConfigOverride): WebpackConfig => {\n // 1) Remove `module`, `fs`, `path`, `vm` from externals. In CRA, you usually\n // want these to be bundled (or set to fallbacks).\n webpackConfig.externals = {\n ...(typeof webpackConfig.externals === 'object'\n ? webpackConfig.externals\n : {}),\n esbuild: 'esbuild', // keep only esbuild external\n };\n webpackConfig.externals.module = undefined;\n webpackConfig.externals.fs = undefined;\n webpackConfig.externals.path = undefined;\n webpackConfig.externals.vm = undefined;\n\n // 2) Properly push node-loader rule instead of overwriting.\n webpackConfig.module.rules.push({\n test: /\\.node$/,\n use: 'node-loader',\n });\n\n return webpackConfig;\n};\n\n/**\n * Override the CRACO config itself to set up aliases, fallbacks, and plugins.\n */\nexport const overrideCracoConfig = ({\n cracoConfig,\n}: CracoConfigOverride): CracoConfig => {\n return {\n ...cracoConfig,\n webpack: {\n ...cracoConfig.webpack,\n plugins: {\n ...cracoConfig.webpack?.plugins,\n // Ensure we actually add IntlayerWebpackPlugin\n add: [\n ...(cracoConfig.webpack?.plugins?.add ?? []),\n new IntlayerWebpackPlugin(intlayerConfig),\n ],\n },\n configure: {\n ...(cracoConfig.webpack?.configure ?? {}),\n resolve: {\n ...(cracoConfig.webpack?.configure?.resolve ?? {}),\n // 3) Provide browser fallbacks so these modules won’t error out in the browser.\n fallback: {\n ...(cracoConfig.webpack?.configure?.resolve?.fallback ?? {}),\n process: getProjectRequire().resolve('process/browser'),\n fs: false,\n module: false,\n path: false,\n vm: false,\n },\n },\n },\n // 4) Alias @intlayer/dictionaries-entry so it no longer tries to use the ESM that depends on `fs`, etc.\n alias: {\n ...cracoConfig.webpack?.alias,\n ...getAlias({\n configuration: intlayerConfig,\n }),\n },\n },\n };\n};\n\n/**\n * A CRACO plugin that adds the Intlayer configuration to the webpack configuration and sets the environment variables.\n *\n * Usage:\n *\n * ```ts\n * const cracoConfig: CracoConfig = {\n * plugins: [\n * {\n * plugin: intlayerCracoPlugin,\n * },\n * ],\n * };\n *\n * export default cracoConfig;\n * ```\n */\nexport const intlayerCracoPlugin: CracoPlugin = {\n overrideCracoConfig,\n overrideWebpackConfig,\n};\n"],"mappings":";;;;;;;CAmBM,
|
|
1
|
+
{"version":3,"file":"intlayerCracoPlugin.cjs","names":["IntlayerWebpackPlugin","intlayerCracoPlugin: CracoPlugin"],"sources":["../../src/intlayerCracoPlugin.ts"],"sourcesContent":["// craco-intlayer-plugin.ts\n\n// @ts-nocheck\n\nimport type {\n CracoConfig,\n CracoConfigOverride,\n CracoPlugin,\n WebpackConfigOverride,\n} from '@craco/types';\nimport {\n getAlias,\n getConfiguration,\n getProjectRequire,\n} from '@intlayer/config';\nimport { IntlayerPlugin as IntlayerWebpackPlugin } from '@intlayer/webpack';\nimport type { Configuration as WebpackConfig } from 'webpack';\n\n// Get Intlayer configuration\nconst intlayerConfig = getConfiguration();\n\n/**\n * Override the final CRA Webpack config.\n */\nexport const overrideWebpackConfig = ({\n webpackConfig,\n}: WebpackConfigOverride): WebpackConfig => {\n // 1) Remove `module`, `fs`, `path`, `vm` from externals. In CRA, you usually\n // want these to be bundled (or set to fallbacks).\n webpackConfig.externals = {\n ...(typeof webpackConfig.externals === 'object'\n ? webpackConfig.externals\n : {}),\n esbuild: 'esbuild', // keep only esbuild external\n };\n webpackConfig.externals.module = undefined;\n webpackConfig.externals.fs = undefined;\n webpackConfig.externals.path = undefined;\n webpackConfig.externals.vm = undefined;\n\n // 2) Properly push node-loader rule instead of overwriting.\n webpackConfig.module.rules.push({\n test: /\\.node$/,\n use: 'node-loader',\n });\n\n return webpackConfig;\n};\n\n/**\n * Override the CRACO config itself to set up aliases, fallbacks, and plugins.\n */\nexport const overrideCracoConfig = ({\n cracoConfig,\n}: CracoConfigOverride): CracoConfig => {\n return {\n ...cracoConfig,\n webpack: {\n ...cracoConfig.webpack,\n plugins: {\n ...cracoConfig.webpack?.plugins,\n // Ensure we actually add IntlayerWebpackPlugin\n add: [\n ...(cracoConfig.webpack?.plugins?.add ?? []),\n new IntlayerWebpackPlugin(intlayerConfig),\n ],\n },\n configure: {\n ...(cracoConfig.webpack?.configure ?? {}),\n resolve: {\n ...(cracoConfig.webpack?.configure?.resolve ?? {}),\n // 3) Provide browser fallbacks so these modules won’t error out in the browser.\n fallback: {\n ...(cracoConfig.webpack?.configure?.resolve?.fallback ?? {}),\n process: getProjectRequire().resolve('process/browser'),\n fs: false,\n module: false,\n path: false,\n vm: false,\n },\n },\n },\n // 4) Alias @intlayer/dictionaries-entry so it no longer tries to use the ESM that depends on `fs`, etc.\n alias: {\n ...cracoConfig.webpack?.alias,\n ...getAlias({\n configuration: intlayerConfig,\n }),\n },\n },\n };\n};\n\n/**\n * A CRACO plugin that adds the Intlayer configuration to the webpack configuration and sets the environment variables.\n *\n * Usage:\n *\n * ```ts\n * const cracoConfig: CracoConfig = {\n * plugins: [\n * {\n * plugin: intlayerCracoPlugin,\n * },\n * ],\n * };\n *\n * export default cracoConfig;\n * ```\n */\nexport const intlayerCracoPlugin: CracoPlugin = {\n overrideCracoConfig,\n overrideWebpackConfig,\n};\n"],"mappings":";;;;;;;CAmBM,yDAAmC;CAK5B,yBAAyB,EACpC,oBAC0C;AAG1C,gBAAc,YAAY;GACxB,GAAI,OAAO,cAAc,cAAc,WACnC,cAAc,YACd,EAAE;GACN,SAAS;GACV;AACD,gBAAc,UAAU,SAAS;AACjC,gBAAc,UAAU,KAAK;AAC7B,gBAAc,UAAU,OAAO;AAC/B,gBAAc,UAAU,KAAK;AAG7B,gBAAc,OAAO,MAAM,KAAK;GAC9B,MAAM;GACN,KAAK;GACN,CAAC;AAEF,SAAO;;CAMI,uBAAuB,EAClC,kBACsC;AACtC,SAAO;GACL,GAAG;GACH,SAAS;IACP,GAAG,YAAY;IACf,SAAS;KACP,GAAG,YAAY,SAAS;KAExB,KAAK,CACH,GAAI,YAAY,SAAS,SAAS,OAAO,EAAE,EAC3C,IAAIA,iCAAsB,eAAe,CAC1C;KACF;IACD,WAAW;KACT,GAAI,YAAY,SAAS,aAAa,EAAE;KACxC,SAAS;MACP,GAAI,YAAY,SAAS,WAAW,WAAW,EAAE;MAEjD,UAAU;OACR,GAAI,YAAY,SAAS,WAAW,SAAS,YAAY,EAAE;OAC3D,kDAA4B,CAAC,QAAQ,kBAAkB;OACvD,IAAI;OACJ,QAAQ;OACR,MAAM;OACN,IAAI;OACL;MACF;KACF;IAED,OAAO;KACL,GAAG,YAAY,SAAS;KACxB,kCAAY,EACV,eAAe,gBAChB,CAAC;KACH;IACF;GACF;;CAoBUC,sBAAmC;EAC9C;EACA;EACD"}
|
|
@@ -21,13 +21,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
21
21
|
}
|
|
22
22
|
return to;
|
|
23
23
|
};
|
|
24
|
-
var __reExport = (target, mod, secondTarget,
|
|
25
|
-
if (symbols) {
|
|
26
|
-
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
27
|
-
secondTarget && __defProp(secondTarget, Symbol.toStringTag, { value: "Module" });
|
|
28
|
-
}
|
|
29
|
-
__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default");
|
|
30
|
-
};
|
|
24
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
31
25
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
32
26
|
value: mod,
|
|
33
27
|
enumerable: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-scripts-intlayer",
|
|
3
|
-
"version": "7.5.0
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Integrate Intlayer with Create React App using custom React scripts for internationalization i18n and advanced Webpack configurations",
|
|
6
6
|
"keywords": [
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"@craco/craco": "7.1.0",
|
|
83
|
-
"@intlayer/config": "7.5.0
|
|
84
|
-
"@intlayer/types": "7.5.0
|
|
85
|
-
"@intlayer/webpack": "7.5.0
|
|
83
|
+
"@intlayer/config": "7.5.0",
|
|
84
|
+
"@intlayer/types": "7.5.0",
|
|
85
|
+
"@intlayer/webpack": "7.5.0",
|
|
86
86
|
"node-loader": "2.1.0",
|
|
87
87
|
"process": "0.11.10",
|
|
88
88
|
"webpack": "5.98.0"
|
|
@@ -90,13 +90,13 @@
|
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@craco/types": "7.1.0",
|
|
92
92
|
"@types/cross-spawn": "6.0.6",
|
|
93
|
-
"@types/node": "25.0.
|
|
93
|
+
"@types/node": "25.0.3",
|
|
94
94
|
"@types/webpack": "5.28.5",
|
|
95
95
|
"@utils/ts-config": "1.0.4",
|
|
96
96
|
"@utils/ts-config-types": "1.0.4",
|
|
97
97
|
"@utils/tsdown-config": "1.0.4",
|
|
98
98
|
"rimraf": "6.1.2",
|
|
99
|
-
"tsdown": "0.18.
|
|
99
|
+
"tsdown": "0.18.1",
|
|
100
100
|
"typescript": "5.9.3",
|
|
101
101
|
"vitest": "4.0.16"
|
|
102
102
|
},
|