From f7c2d81bdd835504377ecb23d4b9dd9e587fb423 Mon Sep 17 00:00:00 2001 From: Barrior Date: Tue, 2 Jan 2024 20:22:06 +0800 Subject: [PATCH] chore: update compile config --- package.json | 5 +- packages/core-react/.fatherrc.ts | 17 +- packages/core-react/package.json | 3 +- packages/form-render-react/.fatherrc.ts | 6 +- packages/search-react/.fatherrc.ts | 6 +- pnpm-lock.yaml | 418 ++++++++++++++++-------- pnpm-workspace.yaml | 2 - 7 files changed, 304 insertions(+), 153 deletions(-) delete mode 100644 pnpm-workspace.yaml diff --git a/package.json b/package.json index 5107a35..db2fcce 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,6 @@ { "name": "root", "private": true, - "workspaces": [ - "packages/*" - ], "scripts": { "dev": "yarn docs", "build": "node scripts/build-cli.mjs", @@ -54,7 +51,7 @@ "dayjs": "^1.11.0", "dumi": "^2.2.7", "execa": "^7.1.1", - "father": "^4.1.7", + "father": "^4.3.8", "glob": "^10.0.0", "husky": "^8.0.3", "inquirer": "^9.1.5", diff --git a/packages/core-react/.fatherrc.ts b/packages/core-react/.fatherrc.ts index a2f7e06..b4fa3ff 100644 --- a/packages/core-react/.fatherrc.ts +++ b/packages/core-react/.fatherrc.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'father'; +import { defineConfig } from 'father' export default defineConfig({ // more father config: https://github.com/umijs/father/blob/master/docs/config.md @@ -6,10 +6,23 @@ export default defineConfig({ input: 'src', output: 'dist/esm', transformer: 'swc', + platform: 'node', }, cjs: { input: 'src', output: 'dist/cjs', transformer: 'swc', + platform: 'browser', }, -}); + umd: { + name: 'SchemaRenderCore', + entry: { + 'src/index': {}, + }, + output: 'dist/umd', + platform: 'browser', + externals: { + react: 'react', + }, + }, +}) diff --git a/packages/core-react/package.json b/packages/core-react/package.json index 4906eff..03e7894 100644 --- a/packages/core-react/package.json +++ b/packages/core-react/package.json @@ -17,7 +17,8 @@ "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "files": [ - "dist" + "dist/cjs", + "dist/esm" ], "scripts": { "build": "father build" diff --git a/packages/form-render-react/.fatherrc.ts b/packages/form-render-react/.fatherrc.ts index a2f7e06..cf64e4b 100644 --- a/packages/form-render-react/.fatherrc.ts +++ b/packages/form-render-react/.fatherrc.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'father'; +import { defineConfig } from 'father' export default defineConfig({ // more father config: https://github.com/umijs/father/blob/master/docs/config.md @@ -6,10 +6,12 @@ export default defineConfig({ input: 'src', output: 'dist/esm', transformer: 'swc', + platform: 'node', }, cjs: { input: 'src', output: 'dist/cjs', transformer: 'swc', + platform: 'browser', }, -}); +}) diff --git a/packages/search-react/.fatherrc.ts b/packages/search-react/.fatherrc.ts index a2f7e06..cf64e4b 100644 --- a/packages/search-react/.fatherrc.ts +++ b/packages/search-react/.fatherrc.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'father'; +import { defineConfig } from 'father' export default defineConfig({ // more father config: https://github.com/umijs/father/blob/master/docs/config.md @@ -6,10 +6,12 @@ export default defineConfig({ input: 'src', output: 'dist/esm', transformer: 'swc', + platform: 'node', }, cjs: { input: 'src', output: 'dist/cjs', transformer: 'swc', + platform: 'browser', }, -}); +}) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0f03f29..bf4b3b3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -72,8 +72,8 @@ importers: specifier: ^7.1.1 version: 7.1.1 father: - specifier: ^4.1.7 - version: 4.1.7(@types/node@20.4.4)(styled-components@6.0.5)(webpack@5.88.2) + specifier: ^4.3.8 + version: 4.3.8(@types/node@20.4.4)(webpack@5.88.2) glob: specifier: ^10.0.0 version: 10.0.0 @@ -1651,6 +1651,12 @@ packages: dependencies: regenerator-runtime: 0.13.11 + /@babel/runtime@7.23.2: + resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 + /@babel/template@7.22.5: resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} engines: {node: '>=6.9.0'} @@ -3599,7 +3605,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 hoist-non-react-statics: 3.3.2 react: 18.1.0 react-is: 16.13.1 @@ -3611,7 +3617,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 hoist-non-react-statics: 3.3.2 react: 18.2.0 react-is: 16.13.1 @@ -3626,32 +3632,32 @@ packages: react: 18.2.0 dev: true - /@microsoft/api-extractor-model@7.26.3(@types/node@20.4.4): - resolution: {integrity: sha512-1Y/JOkaCF5zE6P56saA0yPzEb7ZJwoF2d8fUYdzZY4I0p1gmqGbNk1h9WguvrN5hANg+2CaqcOX0eh+l4SAhJw==} + /@microsoft/api-extractor-model@7.27.5(@types/node@20.4.4): + resolution: {integrity: sha512-9/tBzYMJitR+o+zkPr1lQh2+e8ClcaTF6eZo7vZGDqRt2O5XmXWPbYJZmxyM3wb5at6lfJNEeGZrQXLjsQ0Nbw==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.55.1(@types/node@20.4.4) + '@rushstack/node-core-library': 3.59.6(@types/node@20.4.4) transitivePeerDependencies: - '@types/node' dev: true - /@microsoft/api-extractor@7.34.3(@types/node@20.4.4): - resolution: {integrity: sha512-vXpU+i/MMinVzDxbLo3of1Sx/IS5bwOZl4XrX8YyqNBXFvovEer5ex0wckWumkBErDZtLOMp3zhZfYL3W7h3cg==} + /@microsoft/api-extractor@7.36.3(@types/node@20.4.4): + resolution: {integrity: sha512-u0H6362AQq+r55X8drHx4npgkrCfJnMzRRHfQo8PMNKB8TcBnrTLfXhXWi+xnTM6CzlU/netEN8c4bq581Rnrg==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.26.3(@types/node@20.4.4) + '@microsoft/api-extractor-model': 7.27.5(@types/node@20.4.4) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.55.1(@types/node@20.4.4) - '@rushstack/rig-package': 0.3.17 - '@rushstack/ts-command-line': 4.13.1 + '@rushstack/node-core-library': 3.59.6(@types/node@20.4.4) + '@rushstack/rig-package': 0.4.0 + '@rushstack/ts-command-line': 4.15.1 colors: 1.2.5 lodash: 4.17.21 resolve: 1.22.2 - semver: 7.3.8 + semver: 7.5.4 source-map: 0.6.1 - typescript: 4.8.4 + typescript: 5.0.4 transitivePeerDependencies: - '@types/node' dev: true @@ -4185,7 +4191,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -4194,7 +4200,7 @@ packages: resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==} engines: {node: '>=8.x'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /@rc-component/mutate-observer@1.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-okqRJSfNisXdI6CUeOLZC5ukBW/8kir2Ii4PJiKpUt+3+uS7dxwJUMxsUZquxA1rQuL8YcEmKVp/TCnR+yUdZA==} @@ -4216,7 +4222,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 @@ -4244,7 +4250,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0) classnames: 2.3.2 rc-align: 4.0.15(react-dom@18.2.0)(react@18.2.0) @@ -4255,8 +4261,8 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@rushstack/node-core-library@3.55.1(@types/node@20.4.4): - resolution: {integrity: sha512-t/nZHq4/4S3ltpYVyIsbbIqmcZx3qEe3Aaw8tI9B6XRNqCFzPxtoTopqTPTuRn8XqCtoDaSe6uMlnn7YCTu8lQ==} + /@rushstack/node-core-library@3.59.6(@types/node@20.4.4): + resolution: {integrity: sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==} peerDependencies: '@types/node': '*' peerDependenciesMeta: @@ -4269,19 +4275,19 @@ packages: import-lazy: 4.0.0 jju: 1.4.0 resolve: 1.22.2 - semver: 7.3.8 + semver: 7.5.4 z-schema: 5.0.5 dev: true - /@rushstack/rig-package@0.3.17: - resolution: {integrity: sha512-nxvAGeIMnHl1LlZSQmacgcRV4y1EYtgcDIrw6KkeVjudOMonlxO482PhDj3LVZEp6L7emSf6YSO2s5JkHlwfZA==} + /@rushstack/rig-package@0.4.0: + resolution: {integrity: sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==} dependencies: - resolve: 1.17.0 + resolve: 1.22.2 strip-json-comments: 3.1.1 dev: true - /@rushstack/ts-command-line@4.13.1: - resolution: {integrity: sha512-UTQMRyy/jH1IS2U+6pyzyn9xQ2iMcoUKkTcZUzOP/aaMiKlWLwCTDiBVwhw/M1crDx6apF9CwyjuWO9r1SBdJQ==} + /@rushstack/ts-command-line@4.15.1: + resolution: {integrity: sha512-EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ==} dependencies: '@types/argparse': 1.0.38 argparse: 1.0.10 @@ -5254,13 +5260,13 @@ packages: - supports-color dev: true - /@umijs/babel-preset-umi@4.0.72(styled-components@6.0.5): - resolution: {integrity: sha512-9L2zwcux8iMOD9ji6YK1kiFbA9ZI1o0O/9NJo69QdCv3N41ENXWeNfXVu72GD6+mytmKZEWNCtD0qAzBTXj5jQ==} + /@umijs/babel-preset-umi@4.0.79(styled-components@6.0.5): + resolution: {integrity: sha512-8+R49QPKnx3PeQfSUpjBlaaaCeA4Vf7PCB1yFN2Jqd5l5KTjTo/nhWmh49U1YZC3aJSdtNlBYxmMS4gZ0mwdvg==} dependencies: '@babel/runtime': 7.21.0 '@bloomberg/record-tuple-polyfill': 0.0.4 - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-utils': 4.0.79 + '@umijs/utils': 4.0.79 babel-plugin-styled-components: 2.1.1(styled-components@6.0.5) core-js: 3.28.0 transitivePeerDependencies: @@ -5268,26 +5274,24 @@ packages: - supports-color dev: true - /@umijs/babel-preset-umi@4.0.79(styled-components@6.0.5): - resolution: {integrity: sha512-8+R49QPKnx3PeQfSUpjBlaaaCeA4Vf7PCB1yFN2Jqd5l5KTjTo/nhWmh49U1YZC3aJSdtNlBYxmMS4gZ0mwdvg==} + /@umijs/babel-preset-umi@4.0.90: + resolution: {integrity: sha512-EIpuJdDutSlHTW5AbR2L8rRx+tC1QrLbvxrQek69lM+0Jijnn2n1gznIKKH8ol8yfhNm1o4q54ATWU+SjIDMlg==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.2 '@bloomberg/record-tuple-polyfill': 0.0.4 - '@umijs/bundler-utils': 4.0.79 - '@umijs/utils': 4.0.79 - babel-plugin-styled-components: 2.1.1(styled-components@6.0.5) + '@umijs/bundler-utils': 4.0.90 + '@umijs/utils': 4.0.90 core-js: 3.28.0 transitivePeerDependencies: - - styled-components - supports-color dev: true - /@umijs/bundler-esbuild@4.0.72: - resolution: {integrity: sha512-T7nonD78F6RG94xATF5n/KkdJCOVYukokGFDAd4nPTNhbdYVakgNqwpRVwLEFofYMAN9uJ7rIUKFEt3qMpFR7w==} + /@umijs/bundler-esbuild@4.0.79: + resolution: {integrity: sha512-SEgJ+6rE284XsOc4nYogzjPeUlcBhq8oNTHJ3EpWN009gkIJcU5JnfBLYwzeZAgTMPjEpwpB+y0KvVA/4lZdlw==} hasBin: true dependencies: - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-utils': 4.0.79 + '@umijs/utils': 4.0.79 enhanced-resolve: 5.9.3 postcss: 8.4.27 postcss-flexbugs-fixes: 5.0.2(postcss@8.4.27) @@ -5296,12 +5300,12 @@ packages: - supports-color dev: true - /@umijs/bundler-esbuild@4.0.79: - resolution: {integrity: sha512-SEgJ+6rE284XsOc4nYogzjPeUlcBhq8oNTHJ3EpWN009gkIJcU5JnfBLYwzeZAgTMPjEpwpB+y0KvVA/4lZdlw==} + /@umijs/bundler-esbuild@4.0.90: + resolution: {integrity: sha512-qTC1jkvlFyAyBYvWVVtpHl/RY6jwAeVYppR3eg8lD5HDB5+JK4fsR+waPDjXz56KJfFr+T9+jT4I9LcbbQjKiw==} hasBin: true dependencies: - '@umijs/bundler-utils': 4.0.79 - '@umijs/utils': 4.0.79 + '@umijs/bundler-utils': 4.0.90 + '@umijs/utils': 4.0.90 enhanced-resolve: 5.9.3 postcss: 8.4.27 postcss-flexbugs-fixes: 5.0.2(postcss@8.4.27) @@ -5310,10 +5314,10 @@ packages: - supports-color dev: true - /@umijs/bundler-utils@4.0.72: - resolution: {integrity: sha512-ROGNx6dy3tiMwhC29F6xvWC9O3F4CXnND2raupljTk+QDuvc1hmwUiB/gmCWrts/98cKN2959js03ivIPn9NNw==} + /@umijs/bundler-utils@4.0.79: + resolution: {integrity: sha512-AONUjmdk1Eoq6IhWcIeYevcKWFNgxgNXF/6+WA0Omhrr7gVQRAuUlp5ikG6FO0Bge4GnZPk44J2jPnmv1IYEJA==} dependencies: - '@umijs/utils': 4.0.72 + '@umijs/utils': 4.0.79 esbuild: 0.17.19 regenerate: 1.4.2 regenerate-unicode-properties: 10.1.0 @@ -5322,13 +5326,13 @@ packages: - supports-color dev: true - /@umijs/bundler-utils@4.0.79: - resolution: {integrity: sha512-AONUjmdk1Eoq6IhWcIeYevcKWFNgxgNXF/6+WA0Omhrr7gVQRAuUlp5ikG6FO0Bge4GnZPk44J2jPnmv1IYEJA==} + /@umijs/bundler-utils@4.0.90: + resolution: {integrity: sha512-BMdKGrBLF1ReQYxgJ4egJppVr8ZiP3yoolsKLZg5KmttcuFmOJLGJ/2FXzMM9KbtKfKDDnCINi25STWtWJyF9A==} dependencies: - '@umijs/utils': 4.0.79 + '@umijs/utils': 4.0.90 esbuild: 0.17.19 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 spdy: 4.0.2 transitivePeerDependencies: - supports-color @@ -5357,8 +5361,8 @@ packages: - terser dev: true - /@umijs/bundler-webpack@4.0.72(styled-components@6.0.5)(typescript@4.8.4)(webpack@5.88.2): - resolution: {integrity: sha512-0oTvna4AdMoSvRWeF0E8u8/aKASwll226DkLKvjYDs5FE9nhbxIHevsoSRX7TnlEDPNfV/a3kVRnRG1dR2oJnQ==} + /@umijs/bundler-webpack@4.0.79(styled-components@6.0.5)(typescript@5.1.6)(webpack@5.88.2): + resolution: {integrity: sha512-vMtef2p7MaP2Ba87j6Mb2+zhxooLCYvycHXn8g0+kTmU5l6h3zy5AT6vfeFIWi3BBPoXUNAe5uOL6yUv72z2Vg==} hasBin: true dependencies: '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.88.2) @@ -5366,15 +5370,15 @@ packages: '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) '@types/hapi__joi': 17.1.9 - '@umijs/babel-preset-umi': 4.0.72(styled-components@6.0.5) - '@umijs/bundler-utils': 4.0.72 + '@umijs/babel-preset-umi': 4.0.79(styled-components@6.0.5) + '@umijs/bundler-utils': 4.0.79 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 - '@umijs/mfsu': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/mfsu': 4.0.79 + '@umijs/utils': 4.0.79 cors: 2.8.5 css-loader: 6.7.1(webpack@5.88.2) es5-imcompatible-versions: 0.1.86 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.8.4)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.88.2) jest-worker: 29.4.3 lightningcss: 1.19.0 node-libs-browser: 2.2.1 @@ -5395,26 +5399,26 @@ packages: - webpack-plugin-serve dev: true - /@umijs/bundler-webpack@4.0.79(styled-components@6.0.5)(typescript@5.1.6)(webpack@5.88.2): - resolution: {integrity: sha512-vMtef2p7MaP2Ba87j6Mb2+zhxooLCYvycHXn8g0+kTmU5l6h3zy5AT6vfeFIWi3BBPoXUNAe5uOL6yUv72z2Vg==} + /@umijs/bundler-webpack@4.0.90(typescript@5.0.4)(webpack@5.88.2): + resolution: {integrity: sha512-8m8SD7hduEPQXsMmhU/QtvcAJQBhAmhhMjyCVCd6OSTryd2/kz9EeVjVUSQdKuuHdGzCBKfbB23lnMvu2loTyg==} hasBin: true dependencies: - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.88.2) '@svgr/core': 6.5.1 '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) '@types/hapi__joi': 17.1.9 - '@umijs/babel-preset-umi': 4.0.79(styled-components@6.0.5) - '@umijs/bundler-utils': 4.0.79 + '@umijs/babel-preset-umi': 4.0.90 + '@umijs/bundler-utils': 4.0.90 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 - '@umijs/mfsu': 4.0.79 - '@umijs/utils': 4.0.79 + '@umijs/mfsu': 4.0.90 + '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.88.2) + '@umijs/utils': 4.0.90 cors: 2.8.5 css-loader: 6.7.1(webpack@5.88.2) es5-imcompatible-versions: 0.1.86 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.0.4)(webpack@5.88.2) jest-worker: 29.4.3 - lightningcss: 1.19.0 + lightningcss: 1.22.1 node-libs-browser: 2.2.1 postcss: 8.4.27 postcss-preset-env: 7.5.0(postcss@8.4.27) @@ -5423,7 +5427,6 @@ packages: transitivePeerDependencies: - '@types/webpack' - sockjs-client - - styled-components - supports-color - type-fest - typescript @@ -5437,20 +5440,20 @@ packages: resolution: {integrity: sha512-kDKJ8yTarxwxGJDInG33hOpaQRZ//XpNuuznQ/1Mscypw6kappzFmrBr2dOYave++K7JHouoANF354UpbEQw0Q==} dev: true - /@umijs/core@4.0.72: - resolution: {integrity: sha512-E4+V/SuM8hcnmX/B+phU24LtNvV5Y7DY2ggtkQbJXtEGVFIImeC2ZEEWvGCFzq3soRCCTYG3Iwun4/TpInWIdg==} + /@umijs/core@4.0.79: + resolution: {integrity: sha512-NPL0TY2V0iH4gZbKC6L8O2tvNUD55ypmUIlvn2Z0Bd8pVbjho7PRVzrgIZoOdWnD3vTcajks3kv7WAoIFzTT9A==} dependencies: - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-utils': 4.0.79 + '@umijs/utils': 4.0.79 transitivePeerDependencies: - supports-color dev: true - /@umijs/core@4.0.79: - resolution: {integrity: sha512-NPL0TY2V0iH4gZbKC6L8O2tvNUD55ypmUIlvn2Z0Bd8pVbjho7PRVzrgIZoOdWnD3vTcajks3kv7WAoIFzTT9A==} + /@umijs/core@4.0.90: + resolution: {integrity: sha512-wAv32YX6drhSdC7f6TlSp/I0J0evD2Ajs80akqiBraBtjdW6ACoB3zvM5Z06bRigpsICS6UWbuCu1bfZNb8PbQ==} dependencies: - '@umijs/bundler-utils': 4.0.79 - '@umijs/utils': 4.0.79 + '@umijs/bundler-utils': 4.0.90 + '@umijs/utils': 4.0.90 transitivePeerDependencies: - supports-color dev: true @@ -5558,7 +5561,7 @@ packages: /@umijs/history@5.3.1: resolution: {integrity: sha512-/e0cEGrR2bIWQD7pRl3dl9dcyRGeC9hoW0OCvUTT/hjY0EfUrkd6G8ZanVghPMpDuY5usxq9GVcvrT8KNXLWvA==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 query-string: 6.14.1 dev: true @@ -5591,24 +5594,24 @@ packages: - typescript dev: true - /@umijs/mfsu@4.0.72: - resolution: {integrity: sha512-oyWNIRVK6/FCewMZ8jjn5ICTWWZ7VWP7javN1/zLczvPy2s3cMp5lZuN2Ca39v2Px/DfkCBKSiB/EI6Kts0G8A==} + /@umijs/mfsu@4.0.79: + resolution: {integrity: sha512-KpH8f3/JSHKOdQotvStPFNWnnWFJrdbivfq1ED1vRf4uMbDljSy22Cp05zaTcoLYUuz99Wu3CJ2xVZ7zwWO0dQ==} dependencies: - '@umijs/bundler-esbuild': 4.0.72 - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-esbuild': 4.0.79 + '@umijs/bundler-utils': 4.0.79 + '@umijs/utils': 4.0.79 enhanced-resolve: 5.9.3 is-equal: 1.6.4 transitivePeerDependencies: - supports-color dev: true - /@umijs/mfsu@4.0.79: - resolution: {integrity: sha512-KpH8f3/JSHKOdQotvStPFNWnnWFJrdbivfq1ED1vRf4uMbDljSy22Cp05zaTcoLYUuz99Wu3CJ2xVZ7zwWO0dQ==} + /@umijs/mfsu@4.0.90: + resolution: {integrity: sha512-zAlDMAR4PzCRBD5VxpMkZ+BJ4Z3Ce4gmtVCEJBX7p4uREZ7lHUimi/31VF+oNOL28IoodpPuit9abJ2+6i2tOA==} dependencies: - '@umijs/bundler-esbuild': 4.0.79 - '@umijs/bundler-utils': 4.0.79 - '@umijs/utils': 4.0.79 + '@umijs/bundler-esbuild': 4.0.90 + '@umijs/bundler-utils': 4.0.90 + '@umijs/utils': 4.0.90 enhanced-resolve: 5.9.3 is-equal: 1.6.4 transitivePeerDependencies: @@ -5678,6 +5681,45 @@ packages: - webpack-plugin-serve dev: true + /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.88.2): + resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.31.1 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.4.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.88.2(@swc/core@1.3.44) + dev: true + /@umijs/renderer-react@4.0.79(react-dom@18.1.0)(react@18.1.0): resolution: {integrity: sha512-9joWLxzzLj3+z9FxrrJ9wBZBNlj/RIlyvQhHGnPrqt113ZUkGFO11/xu+5BVGB9JGD/Q9ZC6QvAW8dHMqfvj2A==} peerDependencies: @@ -5740,15 +5782,15 @@ packages: resolution: {integrity: sha512-zcz37AJH0xt/6XVVbyO/hmsK9Hq4vH23HZ4KYVi5A8rbM9KeJkJigTS7ELOdArawZhVNGe+h3a5Oixs4a2QsWw==} dev: true - /@umijs/utils@4.0.72: - resolution: {integrity: sha512-+BOOGCipnr3iEzAliYrfFQeyQd3DrT1vMMXlsBqyD3Qh1owrSb/FsTvFTUYU0jrVgBc3MR5UneEBcPbqxq36Pw==} + /@umijs/utils@4.0.79: + resolution: {integrity: sha512-4lO4Ol0zq4lO1bLTi+uDhpq3lp+K09Bxaar2JwsZvPOiYcc0p+ffSxws39iW7whzIRkhlhpUtqIrRO9k+dSTuA==} dependencies: chokidar: 3.5.3 pino: 7.11.0 dev: true - /@umijs/utils@4.0.79: - resolution: {integrity: sha512-4lO4Ol0zq4lO1bLTi+uDhpq3lp+K09Bxaar2JwsZvPOiYcc0p+ffSxws39iW7whzIRkhlhpUtqIrRO9k+dSTuA==} + /@umijs/utils@4.0.90: + resolution: {integrity: sha512-H+/pgp6SjYiehBbSLLaFOdVvLgGpi4mGLKU08j9u1E8uj5Y1DfKISPfzr+PS4YGminQ4RpUvFOw1OicH6fGo3A==} dependencies: chokidar: 3.5.3 pino: 7.11.0 @@ -6543,10 +6585,6 @@ packages: - supports-color dev: true - /babel-plugin-react-require@3.1.3: - resolution: {integrity: sha512-kDXhW2iPTL81x4Ye2aUMdEXQ56JP0sBJmRQRXJPH5FsNB7fOc/YCsHTqHv8IovPyw9Rk07gdd7MVUz8tUmRBCA==} - dev: true - /babel-plugin-styled-components@2.1.1(styled-components@6.0.5): resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==} peerDependencies: @@ -9483,34 +9521,34 @@ packages: reusify: 1.0.4 dev: true - /father@4.1.7(@types/node@20.4.4)(styled-components@6.0.5)(webpack@5.88.2): - resolution: {integrity: sha512-88DXA4ETIgMx+Lr1JzhwvYUZHPWhYBO1PwgmPSICaPffT9su44eCdwO4b5TMtvPeR5+E3njtPFnJjPrwaCxcwQ==} + /father@4.3.8(@types/node@20.4.4)(webpack@5.88.2): + resolution: {integrity: sha512-uaKzB/UVG3YLBoptvv118U0pCw4iXo4OHHVMCkBlx2vrchO9oVH+tU8DOt3IsnMCOmtQwKo5imKC112R9pRcmw==} hasBin: true dependencies: - '@microsoft/api-extractor': 7.34.3(@types/node@20.4.4) - '@umijs/babel-preset-umi': 4.0.72(styled-components@6.0.5) - '@umijs/bundler-utils': 4.0.72 - '@umijs/bundler-webpack': 4.0.72(styled-components@6.0.5)(typescript@4.8.4)(webpack@5.88.2) - '@umijs/core': 4.0.72 - '@umijs/utils': 4.0.72 + '@microsoft/api-extractor': 7.36.3(@types/node@20.4.4) + '@umijs/babel-preset-umi': 4.0.90 + '@umijs/bundler-utils': 4.0.90 + '@umijs/bundler-webpack': 4.0.90(typescript@5.0.4)(webpack@5.88.2) + '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 + '@umijs/core': 4.0.90 + '@umijs/utils': 4.0.90 '@vercel/ncc': 0.33.3 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-module-resolver: 4.1.0 - babel-plugin-react-require: 3.1.3 babel-plugin-transform-define: 2.0.1 + enhanced-resolve: 5.9.3 fast-glob: 3.2.12 file-system-cache: 2.0.0 loader-runner: 4.2.0 minimatch: 3.1.2 tsconfig-paths: 4.0.0 - typescript: 4.8.4 - typescript-transform-paths: 3.4.6(typescript@4.8.4) + typescript: 5.0.4 + typescript-transform-paths: 3.4.6(typescript@5.0.4) v8-compile-cache: 2.3.0 transitivePeerDependencies: - '@types/node' - '@types/webpack' - sockjs-client - - styled-components - supports-color - type-fest - webpack @@ -9761,7 +9799,7 @@ packages: signal-exit: 4.0.2 dev: true - /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.8.4)(webpack@5.88.2): + /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.0.4)(webpack@5.88.2): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -9780,7 +9818,7 @@ packages: schema-utils: 3.3.0 semver: 7.5.4 tapable: 2.2.1 - typescript: 4.8.4 + typescript: 5.0.4 webpack: 5.88.2(@swc/core@1.3.44) dev: true @@ -10180,7 +10218,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -10625,7 +10663,7 @@ packages: /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dev: true /hmac-drbg@1.0.1: @@ -12502,6 +12540,15 @@ packages: dev: true optional: true + /lightningcss-darwin-arm64@1.22.1: + resolution: {integrity: sha512-ldvElu+R0QimNTjsKpaZkUv3zf+uefzLy/R1R19jtgOfSRM+zjUCUgDhfEDRmVqJtMwYsdhMI2aJtJChPC6Osg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /lightningcss-darwin-x64@1.19.0: resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==} engines: {node: '>= 12.0.0'} @@ -12511,6 +12558,24 @@ packages: dev: true optional: true + /lightningcss-darwin-x64@1.22.1: + resolution: {integrity: sha512-5p2rnlVTv6Gpw4PlTLq925nTVh+HFh4MpegX8dPDYJae+NFVjQ67gY7O6iHIzQjLipDiYejFF0yHrhjU3XgLBQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /lightningcss-freebsd-x64@1.22.1: + resolution: {integrity: sha512-1FaBtcFrZqB2hkFbAxY//Pnp8koThvyB6AhjbdVqKD4/pu13Rl91fKt2N9qyeQPUt3xy7ORUvSO+dPk3J6EjXg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /lightningcss-linux-arm-gnueabihf@1.19.0: resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==} engines: {node: '>= 12.0.0'} @@ -12520,6 +12585,15 @@ packages: dev: true optional: true + /lightningcss-linux-arm-gnueabihf@1.22.1: + resolution: {integrity: sha512-6rub98tYGfE5I5j0BP8t/2d4BZyu1S7Iz9vUkm0H26snAFHYxLfj3RbQn0xHHIePSetjLnhcg3QlfwUAkD/FYg==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /lightningcss-linux-arm64-gnu@1.19.0: resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==} engines: {node: '>= 12.0.0'} @@ -12529,6 +12603,15 @@ packages: dev: true optional: true + /lightningcss-linux-arm64-gnu@1.22.1: + resolution: {integrity: sha512-nYO5qGtb/1kkTZu3FeTiM+2B2TAb7m2DkLCTgQIs2bk2o9aEs7I96fwySKcoHWQAiQDGR9sMux9vkV4KQXqPaQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /lightningcss-linux-arm64-musl@1.19.0: resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==} engines: {node: '>= 12.0.0'} @@ -12538,6 +12621,15 @@ packages: dev: true optional: true + /lightningcss-linux-arm64-musl@1.22.1: + resolution: {integrity: sha512-MCV6RuRpzXbunvzwY644iz8cw4oQxvW7oer9xPkdadYqlEyiJJ6wl7FyJOH7Q6ZYH4yjGAUCvxDBxPbnDu9ZVg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /lightningcss-linux-x64-gnu@1.19.0: resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==} engines: {node: '>= 12.0.0'} @@ -12547,6 +12639,15 @@ packages: dev: true optional: true + /lightningcss-linux-x64-gnu@1.22.1: + resolution: {integrity: sha512-RjNgpdM20VUXgV7us/VmlO3Vn2ZRiDnc3/bUxCVvySZWPiVPprpqW/QDWuzkGa+NCUf6saAM5CLsZLSxncXJwg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /lightningcss-linux-x64-musl@1.19.0: resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==} engines: {node: '>= 12.0.0'} @@ -12556,6 +12657,15 @@ packages: dev: true optional: true + /lightningcss-linux-x64-musl@1.22.1: + resolution: {integrity: sha512-ZgO4C7Rd6Hv/5MnyY2KxOYmIlzk4rplVolDt3NbkNR8DndnyX0Q5IR4acJWNTBICQ21j3zySzKbcJaiJpk/4YA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /lightningcss-win32-x64-msvc@1.19.0: resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==} engines: {node: '>= 12.0.0'} @@ -12565,6 +12675,15 @@ packages: dev: true optional: true + /lightningcss-win32-x64-msvc@1.22.1: + resolution: {integrity: sha512-4pozV4eyD0MDET41ZLHAeBo+H04Nm2UEYIk5w/ts40231dRFV7E0cjwbnZvSoc1DXFgecAhiC0L16ruv/ZDCpg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /lightningcss@1.19.0: resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==} engines: {node: '>= 12.0.0'} @@ -12581,6 +12700,23 @@ packages: lightningcss-win32-x64-msvc: 1.19.0 dev: true + /lightningcss@1.22.1: + resolution: {integrity: sha512-Fy45PhibiNXkm0cK5FJCbfO8Y6jUpD/YcHf/BtuI+jvYYqSXKF4muk61jjE8YxCR9y+hDYIWSzHTc+bwhDE6rQ==} + engines: {node: '>= 12.0.0'} + dependencies: + detect-libc: 1.0.3 + optionalDependencies: + lightningcss-darwin-arm64: 1.22.1 + lightningcss-darwin-x64: 1.22.1 + lightningcss-freebsd-x64: 1.22.1 + lightningcss-linux-arm-gnueabihf: 1.22.1 + lightningcss-linux-arm64-gnu: 1.22.1 + lightningcss-linux-arm64-musl: 1.22.1 + lightningcss-linux-x64-gnu: 1.22.1 + lightningcss-linux-x64-musl: 1.22.1 + lightningcss-win32-x64-msvc: 1.22.1 + dev: true + /lilconfig@2.0.6: resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} engines: {node: '>=10'} @@ -15845,7 +15981,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 dom-align: 1.12.4 rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) @@ -15940,7 +16076,7 @@ packages: react: '>=16.11.0' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@rc-component/trigger': 1.14.4(react-dom@18.2.0)(react@18.2.0) classnames: 2.3.2 rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) @@ -16022,7 +16158,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@rc-component/trigger': 1.14.4(react-dom@18.2.0)(react@18.2.0) classnames: 2.3.2 rc-motion: 2.7.3(react-dom@18.2.0)(react@18.2.0) @@ -16079,7 +16215,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-resize-observer: 1.3.1(react-dom@18.2.0)(react@18.2.0) rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) @@ -16251,7 +16387,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0) rc-menu: 9.11.0(react-dom@18.2.0)(react@18.2.0) @@ -16379,7 +16515,7 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-resize-observer: 1.3.1(react-dom@18.2.0)(react@18.2.0) rc-util: 5.34.1(react-dom@18.2.0)(react@18.2.0) @@ -16440,7 +16576,7 @@ packages: peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 18.2.0 dev: true @@ -16458,7 +16594,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 18.1.0 @@ -16473,7 +16609,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 18.2.0 @@ -16771,6 +16907,13 @@ packages: regenerate: 1.4.2 dev: true + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + dev: true + /regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true @@ -16778,10 +16921,13 @@ packages: /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dev: true /regexp.prototype.flags@1.5.0: @@ -16799,7 +16945,7 @@ packages: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 @@ -17004,12 +17150,6 @@ packages: engines: {node: '>=10'} dev: true - /resolve@1.17.0: - resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} - dependencies: - path-parse: 1.0.7 - dev: true - /resolve@1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: @@ -17309,14 +17449,6 @@ packages: lru-cache: 6.0.0 dev: true - /semver@7.3.8: - resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver@7.5.2: resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} engines: {node: '>=10'} @@ -18850,13 +18982,13 @@ packages: ts-toolbelt: 9.6.0 dev: true - /typescript-transform-paths@3.4.6(typescript@4.8.4): + /typescript-transform-paths@3.4.6(typescript@5.0.4): resolution: {integrity: sha512-qdgpCk9oRHkIBhznxaHAapCFapJt5e4FbFik7Y4qdqtp6VyC3smAIPoDEIkjZ2eiF7x5+QxUPYNwJAtw0thsTw==} peerDependencies: typescript: '>=3.6.5' dependencies: minimatch: 3.1.2 - typescript: 4.8.4 + typescript: 5.0.4 dev: true /typescript@4.8.4: @@ -18865,6 +18997,12 @@ packages: hasBin: true dev: true + /typescript@5.0.4: + resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} + engines: {node: '>=12.20'} + hasBin: true + dev: true + /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} engines: {node: '>=14.17'} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml deleted file mode 100644 index 18ec407..0000000 --- a/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - 'packages/*'