@umijs/mfsu 4.0.0-canary.20220316.1 → 4.0.0-canary.20220318.1

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.
@@ -28,6 +28,8 @@ function checkMatch({ value, path, opts, isExportAll, depth, cache, filename, })
28
28
  if (
29
29
  // unMatch specified libs
30
30
  ((_a = opts.unMatchLibs) === null || _a === void 0 ? void 0 : _a.includes(value)) ||
31
+ // do not match bundler-webpack/client/client/client.js
32
+ value.includes('client/client/client.js') ||
31
33
  // already handled
32
34
  value.startsWith(`${remoteName}/`) ||
33
35
  // don't match dynamic path
package/dist/mfsu.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { NextFunction, Request, Response } from 'express';
1
+ import type { NextFunction, Request, Response } from '@umijs/bundler-utils/compiled/express';
2
2
  import webpack, { Configuration } from 'webpack';
3
3
  import autoExport from './babelPlugins/autoExport';
4
4
  import awaitImport from './babelPlugins/awaitImport/awaitImport';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umijs/mfsu",
3
- "version": "4.0.0-canary.20220316.1",
3
+ "version": "4.0.0-canary.20220318.1",
4
4
  "description": "@umijs/mfsu",
5
5
  "homepage": "https://github.com/umijs/umi-next/tree/master/packages/mfsu#readme",
6
6
  "bugs": "https://github.com/umijs/umi-next/issues",
@@ -22,13 +22,12 @@
22
22
  "test": "jest -c ../../jest.turbo.config.ts"
23
23
  },
24
24
  "dependencies": {
25
- "@umijs/bundler-esbuild": "4.0.0-canary.20220316.1",
26
- "@umijs/bundler-utils": "4.0.0-canary.20220316.1",
27
- "@umijs/utils": "4.0.0-canary.20220316.1",
25
+ "@umijs/bundler-esbuild": "4.0.0-canary.20220318.1",
26
+ "@umijs/bundler-utils": "4.0.0-canary.20220318.1",
27
+ "@umijs/utils": "4.0.0-canary.20220318.1",
28
28
  "enhanced-resolve": "5.9.2"
29
29
  },
30
30
  "devDependencies": {
31
- "@types/express": "4.17.13",
32
31
  "mrmime": "1.0.0",
33
32
  "webpack": "5.70.0",
34
33
  "webpack-virtual-modules": "0.4.3"