@umijs/mfsu 4.0.0-beta.8 → 4.0.0-beta.9

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.
Files changed (38) hide show
  1. package/dist/dep/dep.d.ts +4 -1
  2. package/dist/dep/dep.js +16 -0
  3. package/dist/dep/getExposeFromContent.d.ts +0 -1
  4. package/dist/depBuilder/depBuilder.d.ts +0 -1
  5. package/dist/depBuilder/depBuilder.js +1 -0
  6. package/dist/depBuilder/getESBuildEntry.d.ts +0 -1
  7. package/dist/depInfo.d.ts +0 -1
  8. package/dist/index.d.ts +0 -1
  9. package/dist/mfsu.d.ts +0 -1
  10. package/dist/mfsu.js +6 -0
  11. package/dist/moduleGraph.d.ts +1 -1
  12. package/dist/moduleGraph.js +1 -1
  13. package/package.json +17 -17
  14. package/dist/babelPlugins/autoExport.d.ts.map +0 -1
  15. package/dist/babelPlugins/awaitImport/awaitImport.d.ts.map +0 -1
  16. package/dist/babelPlugins/awaitImport/checkMatch.d.ts.map +0 -1
  17. package/dist/babelPlugins/awaitImport/getAliasedPath.d.ts.map +0 -1
  18. package/dist/babelPlugins/awaitImport/getRealPath.d.ts.map +0 -1
  19. package/dist/babelPlugins/awaitImport/isExternals.d.ts.map +0 -1
  20. package/dist/babelPlugins/awaitImport/parseSpecifiers.d.ts.map +0 -1
  21. package/dist/constants.d.ts.map +0 -1
  22. package/dist/dep/dep.d.ts.map +0 -1
  23. package/dist/dep/getCJSExports.d.ts.map +0 -1
  24. package/dist/dep/getExposeFromContent.d.ts.map +0 -1
  25. package/dist/dep/getModuleExports.d.ts.map +0 -1
  26. package/dist/depBuilder/depBuilder.d.ts.map +0 -1
  27. package/dist/depBuilder/getESBuildEntry.d.ts.map +0 -1
  28. package/dist/depInfo.d.ts.map +0 -1
  29. package/dist/index.d.ts.map +0 -1
  30. package/dist/mfsu.d.ts.map +0 -1
  31. package/dist/moduleGraph.d.ts.map +0 -1
  32. package/dist/types.d.ts.map +0 -1
  33. package/dist/utils/makeArray.d.ts.map +0 -1
  34. package/dist/utils/trimFileContent.d.ts.map +0 -1
  35. package/dist/webpackPlugins/buildDepPlugin.d.ts.map +0 -1
  36. package/dist/webpackPlugins/depChunkIdPrefixPlugin.d.ts.map +0 -1
  37. package/dist/webpackPlugins/stripSourceMapUrlPlugin.d.ts.map +0 -1
  38. package/dist/webpackPlugins/writeCachePlugin.d.ts.map +0 -1
package/dist/dep/dep.d.ts CHANGED
@@ -23,5 +23,8 @@ export declare class Dep {
23
23
  cwd: string;
24
24
  mfsu: MFSU;
25
25
  }): Dep[];
26
+ static getDepVersion(opts: {
27
+ dep: string;
28
+ cwd: string;
29
+ }): string;
26
30
  }
27
- //# sourceMappingURL=dep.d.ts.map
package/dist/dep/dep.js CHANGED
@@ -13,9 +13,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
13
13
  };
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.Dep = void 0;
16
+ const utils_1 = require("@umijs/utils");
16
17
  const assert_1 = __importDefault(require("assert"));
17
18
  const enhanced_resolve_1 = __importDefault(require("enhanced-resolve"));
18
19
  const fs_1 = require("fs");
20
+ const path_1 = require("path");
19
21
  const constants_1 = require("../constants");
20
22
  const trimFileContent_1 = require("../utils/trimFileContent");
21
23
  const getExposeFromContent_1 = require("./getExposeFromContent");
@@ -88,5 +90,19 @@ export * from '${this.file}';
88
90
  return new Dep(Object.assign(Object.assign({}, opts.deps[file]), { cwd: opts.cwd, mfsu: opts.mfsu }));
89
91
  });
90
92
  }
93
+ static getDepVersion(opts) {
94
+ // @ts-ignore
95
+ if (!!process.binding('natives')[opts.dep]) {
96
+ return '*';
97
+ }
98
+ const dep = (0, path_1.isAbsolute)(opts.dep)
99
+ ? opts.dep
100
+ : (0, path_1.join)(opts.cwd, 'node_modules', opts.dep);
101
+ const pkg = utils_1.pkgUp.sync({
102
+ cwd: dep,
103
+ });
104
+ (0, assert_1.default)(pkg, `package.json not found for ${opts.dep}`);
105
+ return require(pkg).version;
106
+ }
91
107
  }
92
108
  exports.Dep = Dep;
@@ -4,4 +4,3 @@ export declare function getExposeFromContent(opts: {
4
4
  filePath: string;
5
5
  content: string;
6
6
  }): Promise<string>;
7
- //# sourceMappingURL=getExposeFromContent.d.ts.map
@@ -28,4 +28,3 @@ export declare class DepBuilder {
28
28
  }): import("webpack").Configuration;
29
29
  }
30
30
  export {};
31
- //# sourceMappingURL=depBuilder.d.ts.map
@@ -68,6 +68,7 @@ class DepBuilder {
68
68
  alias: this.opts.mfsu.alias,
69
69
  externals: this.opts.mfsu.externals,
70
70
  },
71
+ inlineStyle: true,
71
72
  });
72
73
  utils_1.logger.event(`[mfsu] compiled with esbuild successfully in ${+new Date() - date} ms`);
73
74
  opts.onBuildComplete();
@@ -2,4 +2,3 @@ import { Dep } from '../dep/dep';
2
2
  export declare function getESBuildEntry(opts: {
3
3
  deps: Dep[];
4
4
  }): string;
5
- //# sourceMappingURL=getESBuildEntry.d.ts.map
package/dist/depInfo.d.ts CHANGED
@@ -15,4 +15,3 @@ export declare class DepInfo {
15
15
  writeCache(): void;
16
16
  }
17
17
  export {};
18
- //# sourceMappingURL=depInfo.d.ts.map
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  export * from './constants';
2
2
  export * from './mfsu';
3
- //# sourceMappingURL=index.d.ts.map
package/dist/mfsu.d.ts CHANGED
@@ -52,4 +52,3 @@ export declare class MFSU {
52
52
  })[])[];
53
53
  }
54
54
  export {};
55
- //# sourceMappingURL=mfsu.d.ts.map
package/dist/mfsu.js CHANGED
@@ -44,6 +44,7 @@ class MFSU {
44
44
  this.opts.cwd = this.opts.cwd || process.cwd();
45
45
  this.depInfo = new depInfo_1.DepInfo({ mfsu: this });
46
46
  this.depBuilder = new depBuilder_1.DepBuilder({ mfsu: this });
47
+ this.depInfo.loadCache();
47
48
  }
48
49
  setWebpackConfig(opts) {
49
50
  var _a;
@@ -145,10 +146,15 @@ class MFSU {
145
146
  onCollect: ({ file, data, }) => {
146
147
  this.depInfo.moduleGraph.onFileChange({
147
148
  file,
149
+ // @ts-ignore
148
150
  deps: [
149
151
  ...Array.from(data.matched).map((item) => ({
150
152
  file: item.sourceValue,
151
153
  isDependency: true,
154
+ version: dep_1.Dep.getDepVersion({
155
+ dep: item.sourceValue,
156
+ cwd: this.opts.cwd,
157
+ }),
152
158
  })),
153
159
  ...Array.from(data.unMatched).map((item) => ({
154
160
  file: (0, getRealPath_1.getRealPath)({
@@ -30,7 +30,7 @@ export declare class ModuleGraph {
30
30
  toJSON(): {
31
31
  roots: string[];
32
32
  fileModules: Record<string, {
33
- importModules: string[];
33
+ importedModules: string[];
34
34
  }>;
35
35
  depModules: Record<string, {
36
36
  version: string | null;
@@ -65,7 +65,7 @@ class ModuleGraph {
65
65
  });
66
66
  this.fileToModules.forEach((value, key) => {
67
67
  fileModules[key] = {
68
- importModules: Array.from(value.importedModules).map((item) => item.file),
68
+ importedModules: Array.from(value.importedModules).map((item) => item.file),
69
69
  };
70
70
  if (value.isRoot) {
71
71
  roots.push(key);
package/package.json CHANGED
@@ -1,7 +1,14 @@
1
1
  {
2
2
  "name": "@umijs/mfsu",
3
- "version": "4.0.0-beta.8",
3
+ "version": "4.0.0-beta.9",
4
4
  "description": "@umijs/mfsu",
5
+ "homepage": "https://github.com/umijs/umi-next/tree/master/packages/mfsu#readme",
6
+ "bugs": "https://github.com/umijs/umi-next/issues",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/umijs/umi-next"
10
+ },
11
+ "license": "MIT",
5
12
  "main": "dist/index.js",
6
13
  "types": "dist/index.d.ts",
7
14
  "files": [
@@ -13,23 +20,10 @@
13
20
  "build:deps": "pnpm esno ../../scripts/bundleDeps.ts",
14
21
  "dev": "pnpm build -- --watch"
15
22
  },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/umijs/umi-next"
19
- },
20
- "authors": [
21
- "chencheng <sorrycc@gmail.com> (https://github.com/sorrycc)"
22
- ],
23
- "license": "MIT",
24
- "bugs": "https://github.com/umijs/umi-next/issues",
25
- "homepage": "https://github.com/umijs/umi-next/tree/master/packages/mfsu#readme",
26
- "publishConfig": {
27
- "access": "public"
28
- },
29
23
  "dependencies": {
30
- "@umijs/bundler-esbuild": "4.0.0-beta.8",
31
- "@umijs/bundler-utils": "4.0.0-beta.8",
32
- "@umijs/utils": "4.0.0-beta.8"
24
+ "@umijs/bundler-esbuild": "4.0.0-beta.9",
25
+ "@umijs/bundler-utils": "4.0.0-beta.9",
26
+ "@umijs/utils": "4.0.0-beta.9"
33
27
  },
34
28
  "devDependencies": {
35
29
  "@types/express": "4.17.13",
@@ -38,6 +32,12 @@
38
32
  "webpack": "5.61.0",
39
33
  "webpack-virtual-modules": "0.4.3"
40
34
  },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "authors": [
39
+ "chencheng <sorrycc@gmail.com> (https://github.com/sorrycc)"
40
+ ],
41
41
  "compiledConfig": {
42
42
  "deps": [
43
43
  "mrmime",
@@ -1 +0,0 @@
1
- {"version":3,"file":"autoExport.d.ts","sourceRoot":"","sources":["../../src/babelPlugins/autoExport.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,0CAA0C,CAAC;AAClE,OAAO,KAAK,CAAC,MAAM,2CAA2C,CAAC;AAE/D,MAAM,CAAC,OAAO;;sBAGM,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC;;EA2C5C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"awaitImport.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/awaitImport.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,0CAA0C,CAAC;AAClE,OAAO,KAAK,CAAC,MAAM,2CAA2C,CAAC;AAG/D,MAAM,WAAW,KAAK;IACpB,eAAe,CAAC,EAAE,QAAQ,CAAC;IAC3B,SAAS,CAAC,EAAE,QAAQ,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAC5C,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,SAAS,CAAC,EAAE,GAAG,CAAC;CACjB;AAED,MAAM,CAAC,OAAO;;gBAME,GAAG;;;uBAaA,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC;sBAAoB,KAAK;;;;uBAwDrD,MAAM,QAAQ,CAAC,EAAE,cAAc,CAAC;sBACpB,KAAK;;;;EAuBhC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"checkMatch.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/checkMatch.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,0CAA0C,CAAC;AAIlE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAQ3C,wBAAgB,UAAU,CAAC,EACzB,KAAK,EACL,IAAI,EACJ,IAAI,EACJ,WAAW,EACX,KAAK,EACL,KAAK,GACN,EAAE;IACD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC1B,GAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,CAoG7C;AAGD,wBAAgB,OAAO,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,KAAK,CAAA;CAAE,UAQtE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getAliasedPath.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/getAliasedPath.ts"],"names":[],"mappings":"AAEA,wBAAgB,cAAc,CAAC,EAC7B,KAAK,EACL,KAAK,GACN,EAAE;IACD,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,sBAwBA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getRealPath.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/getRealPath.ts"],"names":[],"mappings":"AAKA,wBAAgB,WAAW,CAAC,IAAI,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,iBAe9D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"isExternals.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/isExternals.ts"],"names":[],"mappings":"AAAA,aAAK,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,QAAQ,CAAC;AACnD,aAAK,UAAU,GAAG,SAAS,EAAE,GAAG,SAAS,CAAC;AAE1C,wBAAgB,WAAW,CAAC,EAC1B,KAAK,EACL,SAAS,GACV,EAAE;IACD,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,UAAU,CAAC;CACvB,WAQA;AAED,wBAAgB,UAAU,CAAC,EACzB,KAAK,EACL,QAAQ,GACT,EAAE;IACD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,SAAS,CAAC;CACrB,WAYA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"parseSpecifiers.d.ts","sourceRoot":"","sources":["../../../src/babelPlugins/awaitImport/parseSpecifiers.ts"],"names":[],"mappings":"AAIA,wBAAgB,eAAe,CAAC,UAAU,EAAE,GAAG,EAAE,OAyBhD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,WAAW,CAAC;AACrC,eAAO,MAAM,aAAa,YAAY,CAAC;AACvC,eAAO,MAAM,gBAAgB,eAAe,CAAC;AAC7C,eAAO,MAAM,eAAe,OAAO,CAAC;AACpC,eAAO,MAAM,oBAAoB,UAAU,CAAC;AAC5C,eAAO,MAAM,WAAW,mBAAmB,CAAC;AAC5C,eAAO,MAAM,gBAAgB,QAAkC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"dep.d.ts","sourceRoot":"","sources":["../../src/dep/dep.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAoB/B,qBAAa,GAAG;IACP,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,IAAI,CAAC;gBACN,IAAI,EAAE;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,IAAI,CAAC;KACZ;IAUK,kBAAkB;IA8BlB,WAAW;IAUjB,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE;QACrB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;QACxD,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,IAAI,CAAC;KACZ;CASF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getCJSExports.d.ts","sourceRoot":"","sources":["../../src/dep/getCJSExports.ts"],"names":[],"mappings":"AAAA,wBAAgB,aAAa,CAAC,EAAE,OAAO,EAAE,EAAE;IAAE,OAAO,EAAE,MAAM,CAAA;CAAE,YAoE7D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getExposeFromContent.d.ts","sourceRoot":"","sources":["../../src/dep/getExposeFromContent.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAG5B,wBAAsB,oBAAoB,CAAC,IAAI,EAAE;IAC/C,GAAG,EAAE,GAAG,CAAC;IACT,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,mBAoEA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getModuleExports.d.ts","sourceRoot":"","sources":["../../src/dep/getModuleExports.ts"],"names":[],"mappings":"AAKA,wBAAsB,gBAAgB,CAAC,EACrC,OAAO,EACP,QAAQ,GACT,EAAE;IACD,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB;;;GA4BA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"depBuilder.d.ts","sourceRoot":"","sources":["../../src/depBuilder/depBuilder.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAK/B,UAAU,KAAK;IACb,IAAI,EAAE,IAAI,CAAC;CACZ;AAED,qBAAa,UAAU;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,WAAW,EAAE,QAAQ,EAAE,CAAM;IAC7B,UAAU,UAAS;gBACd,IAAI,EAAE,KAAK;IAIjB,gBAAgB,CAAC,IAAI,EAAE;QAAE,eAAe,EAAE,QAAQ,CAAC;QAAC,IAAI,EAAE,GAAG,EAAE,CAAA;KAAE;IAwBjE,gBAAgB,CAAC,IAAI,EAAE;QAAE,eAAe,EAAE,QAAQ,CAAC;QAAC,IAAI,EAAE,GAAG,EAAE,CAAA;KAAE;IAwBjE,KAAK,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,GAAG,EAAE,CAAA;KAAE;IAkBjC,eAAe,CAAC,EAAE,EAAE,QAAQ;IAQtB,YAAY,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,GAAG,EAAE,CAAA;KAAE;IAaxC,gBAAgB,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,GAAG,EAAE,CAAA;KAAE;CA0DvC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getESBuildEntry.d.ts","sourceRoot":"","sources":["../../src/depBuilder/getESBuildEntry.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AAEjC,wBAAgB,eAAe,CAAC,IAAI,EAAE;IAAE,IAAI,EAAE,GAAG,EAAE,CAAA;CAAE,UAuSpD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"depInfo.d.ts","sourceRoot":"","sources":["../src/depInfo.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,UAAU,KAAK;IACb,IAAI,EAAE,IAAI,CAAC;CACZ;AAED,qBAAa,OAAO;IAClB,OAAO,CAAC,IAAI,CAAQ;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAqB;IAC7C,eAAe,EAAE,MAAM,CAAM;gBACxB,IAAI,EAAE,KAAK;IAKvB,WAAW;IAiBX,QAAQ;IAKR,SAAS;IAUT,UAAU;CAeX"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mfsu.d.ts","sourceRoot":"","sources":["../src/mfsu.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAG/D,OAAO,OAAO,EAAE,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAIjD,OAAO,UAAU,MAAM,2BAA2B,CAAC;AACnD,OAAO,WAAW,MAAM,wCAAwC,CAAC;AAYjE,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAK/B,UAAU,KAAK;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAC5C,kBAAkB,CAAC,EAAE,QAAQ,CAAC;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,WAAW,EAAE,OAAO,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,qBAAa,IAAI;IACR,IAAI,EAAE,KAAK,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAM;IACnC,SAAS,EAAE,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,QAAQ,CAAC,EAAE,CAAM;IACtD,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,UAAU,CAAC;IACvB,SAAS,EAAE,aAAa,GAAG,IAAI,CAAQ;gBAClC,IAAI,EAAE,KAAK;IAYvB,gBAAgB,CAAC,IAAI,EAAE;QAAE,MAAM,EAAE,aAAa,CAAC;QAAC,SAAS,EAAE,aAAa,CAAA;KAAE;IAyDpE,SAAS;IAaf,cAAc,WAEJ,OAAO,OAAO,QAAQ,QAAQ,YAAY;IAgCpD,eAAe;;;kBAWC,MAAM;kBACN;gBACJ,SAAS,EAAE,IAAI;oBAAE,WAAW,EAAE,MAAM,CAAA;iBAAE,CAAC,CAAC;gBACxC,OAAO,EAAE,IAAI;oBAAE,WAAW,EAAE,MAAM,CAAA;iBAAE,CAAC,CAAC;aACvC;;;;;;;;CA4BZ"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"moduleGraph.d.ts","sourceRoot":"","sources":["../src/moduleGraph.ts"],"names":[],"mappings":"AAEA,cAAM,UAAU;IACd,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,kBAAyB;IAClC,eAAe,kBAAyB;IACxC,YAAY,EAAE,OAAO,CAAS;IAC9B,MAAM,EAAE,OAAO,CAAS;IACxB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAQ;gBAClB,IAAI,EAAE,MAAM;CAGzB;AAED,UAAU,IAAI;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,OAAO,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,WAAW;IACtB,aAAa,0BAAiC;IAC9C,YAAY,0BAAiC;IAC7C,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAM;IAC3E,WAAW,kBAAyB;;IAGpC,OAAO,CAAC,IAAI,EAAE;QACZ,KAAK,EAAE,GAAG,CAAC;QACX,WAAW,EAAE,GAAG,CAAC;QACjB,UAAU,EAAE,GAAG,CAAC;QAChB,kBAAkB,EAAE,GAAG,CAAC;KACzB;IAiCD,MAAM;;;2BAE+C,MAAM,EAAE;;;qBACf,MAAM,GAAG,IAAI;;;;;;;IAwB3D,YAAY;IAIZ,WAAW,CAAC,IAAI,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC;cAEd,MAAM;iBAAW,MAAM;;IAOlD,UAAU,CAAC,GAAG,EAAE,UAAU;;;;IAO1B,aAAa;IAKb,YAAY,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,IAAI,EAAE,CAAA;KAAE;IAuBjD,YAAY,CAAC,IAAI,EAAE;QAAE,GAAG,EAAE,UAAU,CAAC;QAAC,IAAI,EAAE,IAAI,EAAE,CAAA;KAAE;IA8BpD,OAAO,CAAC,IAAI,EAAE;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,YAAY,EAAE,OAAO,CAAC;QACtB,QAAQ,EAAE,UAAU,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;IAoBD,UAAU,CAAC,IAAI,EAAE;QAAE,GAAG,EAAE,UAAU,CAAC;QAAC,QAAQ,EAAE,UAAU,CAAA;KAAE;CAiB3D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,oBAAY,IAAI;IACd,WAAW,gBAAgB;IAC3B,UAAU,eAAe;CAC1B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"makeArray.d.ts","sourceRoot":"","sources":["../../src/utils/makeArray.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,IAAI,EAAE,GAAG,SAElC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"trimFileContent.d.ts","sourceRoot":"","sources":["../../src/utils/trimFileContent.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,UAE9C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"buildDepPlugin.d.ts","sourceRoot":"","sources":["../../src/webpackPlugins/buildDepPlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAS,MAAM,SAAS,CAAC;AAE/C,UAAU,KAAK;IACb,aAAa,EAAE,QAAQ,CAAC;CACzB;AAID,qBAAa,cAAc;IACzB,OAAO,CAAC,IAAI,CAAQ;gBACR,IAAI,EAAE,KAAK;IAGvB,KAAK,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;CAOhC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"depChunkIdPrefixPlugin.d.ts","sourceRoot":"","sources":["../../src/webpackPlugins/depChunkIdPrefixPlugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAKnC,qBAAa,sBAAsB;;IAEjC,KAAK,CAAC,QAAQ,EAAE,QAAQ;CAUzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"stripSourceMapUrlPlugin.d.ts","sourceRoot":"","sources":["../../src/webpackPlugins/stripSourceMapUrlPlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,UAAU,KAAK;IACb,OAAO,EAAE,GAAG,CAAC;CACd;AAED,qBAAa,uBAAuB;IAClC,IAAI,EAAE,KAAK,CAAC;gBACA,IAAI,EAAE,KAAK;IAIvB,KAAK,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;CAyBhC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"writeCachePlugin.d.ts","sourceRoot":"","sources":["../../src/webpackPlugins/writeCachePlugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,UAAU,KAAK;IACb,YAAY,EAAE,QAAQ,CAAC;CACxB;AAID,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,IAAI,CAAQ;gBACR,IAAI,EAAE,KAAK;IAGvB,KAAK,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;CAQhC"}