@teleporthq/teleport-project-generator-html 0.43.0-alpha.0 → 0.43.3

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 (35) hide show
  1. package/__tests__/end2end/index.ts +17 -4
  2. package/__tests__/index.ts +4 -4
  3. package/dist/cjs/error-page-mapping.d.ts.map +1 -1
  4. package/dist/cjs/error-page-mapping.js +2 -1
  5. package/dist/cjs/error-page-mapping.js.map +1 -1
  6. package/dist/cjs/index.d.ts +7 -3
  7. package/dist/cjs/index.d.ts.map +1 -1
  8. package/dist/cjs/index.js +26 -7
  9. package/dist/cjs/index.js.map +1 -1
  10. package/dist/cjs/plugin-clone-globals.d.ts +9 -2
  11. package/dist/cjs/plugin-clone-globals.d.ts.map +1 -1
  12. package/dist/cjs/plugin-clone-globals.js +38 -21
  13. package/dist/cjs/plugin-clone-globals.js.map +1 -1
  14. package/dist/cjs/plugin-home-replace.js +1 -1
  15. package/dist/cjs/plugin-home-replace.js.map +1 -1
  16. package/dist/cjs/tsconfig.tsbuildinfo +1 -1
  17. package/dist/esm/error-page-mapping.d.ts.map +1 -1
  18. package/dist/esm/error-page-mapping.js +2 -1
  19. package/dist/esm/error-page-mapping.js.map +1 -1
  20. package/dist/esm/index.d.ts +7 -3
  21. package/dist/esm/index.d.ts.map +1 -1
  22. package/dist/esm/index.js +26 -8
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/plugin-clone-globals.d.ts +9 -2
  25. package/dist/esm/plugin-clone-globals.d.ts.map +1 -1
  26. package/dist/esm/plugin-clone-globals.js +35 -16
  27. package/dist/esm/plugin-clone-globals.js.map +1 -1
  28. package/dist/esm/plugin-home-replace.js +1 -1
  29. package/dist/esm/plugin-home-replace.js.map +1 -1
  30. package/dist/esm/tsconfig.tsbuildinfo +1 -1
  31. package/package.json +7 -7
  32. package/src/error-page-mapping.ts +2 -1
  33. package/src/index.ts +21 -4
  34. package/src/plugin-clone-globals.ts +42 -7
  35. package/src/plugin-home-replace.ts +1 -1
@@ -1,4 +1,4 @@
1
- import uidlSample from '../../../../examples/uidl-samples/project.json'
1
+ import uidlSample from '../../../../examples/uidl-samples/tests.json'
2
2
  import invalidUidlSample from '../../../../examples/test-samples/project-invalid-sample.json'
3
3
  import projectWithSlot from '../../../../examples/test-samples/project-with-slot.json'
4
4
  import { createHTMLProjectGenerator, pluginCloneGlobals, pluginHomeReplace } from '../../src'
@@ -32,7 +32,7 @@ describe('Html Project Generator', () => {
32
32
  expect(aboutCSS?.content).toContain('public/playground_assets/kitten.png')
33
33
  })
34
34
 
35
- it('run withut crashing and appends entry things into single index.html', async () => {
35
+ it('run without crashing and appends entry things into single index.html', async () => {
36
36
  const singularGenerator = createHTMLProjectGenerator()
37
37
  singularGenerator.addPlugin(pluginHomeReplace)
38
38
 
@@ -59,6 +59,19 @@ describe('Html Project Generator', () => {
59
59
  expect(aboutCSS?.content).toContain('public/playground_assets/kitten.png')
60
60
  })
61
61
 
62
+ it('creates a next project and generates the named-slot for passing components', async () => {
63
+ const generator = createHTMLProjectGenerator()
64
+ const { subFolders, files } = await generator.generateProject(uidlSample)
65
+ const components = subFolders.find((folder) => folder.name === 'components')
66
+ const heroComponent = components?.files.find(
67
+ (file) => file.name === 'hero' && file.fileType === FileType.HTML
68
+ )
69
+ const indexFile = files.find((file) => file.name === 'index' && file.fileType === FileType.HTML)
70
+
71
+ expect(heroComponent).toBeDefined()
72
+ expect(indexFile?.content).toContain(`This is amazing, because this is a named-slot`)
73
+ })
74
+
62
75
  it('throws error when invalid UIDL sample is used', async () => {
63
76
  const generator = createHTMLProjectGenerator()
64
77
  const result = generator.generateProject(invalidUidlSample, HTMLTemplate)
@@ -85,10 +98,10 @@ describe('Unwinds the slot inside the component when used in page', () => {
85
98
  )
86
99
 
87
100
  expect(indexFile).toBeDefined()
101
+ expect(indexFile?.content).toContain(`app-component-image`)
88
102
  expect(indexFile?.content).toContain(`app-component-image1`)
89
- expect(indexFile?.content).toContain(`app-component-image2`)
90
103
  expect(cssFile).toBeDefined()
91
- expect(cssFile?.content).toContain(`.app-component-image2`)
104
+ expect(cssFile?.content).toContain(`.app-component-image`)
92
105
  expect(cssFile?.content).toContain(`.app-component-image1`)
93
106
  })
94
107
  })
@@ -2,7 +2,7 @@ import { FileType } from '@teleporthq/teleport-types'
2
2
  import ProjectTemplate from '../src/project-template'
3
3
  import { htmlErrorPageMapping } from '../src/error-page-mapping'
4
4
  import { createHTMLProjectGenerator, pluginCloneGlobals, pluginHomeReplace } from '../src'
5
- import fallbackUidlSample from '../../../examples/uidl-samples/project.json'
5
+ import fallbackUidlSample from '../../../examples/uidl-samples/tests.json'
6
6
  import uidlWithCompStyleOverrides from '../../../examples/test-samples/comp-style-overrides.json'
7
7
  import uidlWithImages from '../../../examples/test-samples/html-image-use-cases.json'
8
8
 
@@ -27,8 +27,8 @@ describe('Passes the rootClass which using the component', () => {
27
27
  )
28
28
 
29
29
  expect(mainFile).toBeDefined()
30
- expect(mainFile?.content).toContain(`place-card-root-class-name`)
31
- expect(styleFile?.content).toContain(`place-card-root-class-name`)
30
+ expect(mainFile?.content).toContain(`root-class-name`)
31
+ expect(styleFile?.content).toContain(`root-class-name`)
32
32
  })
33
33
  })
34
34
 
@@ -66,7 +66,7 @@ describe('Image Resolution', () => {
66
66
  background-image: url("public/playground_assets/kitten.png");
67
67
  }
68
68
  }`)
69
- expect(mainCSS?.content).toContain(`.comp-with-image-prop-bg-image-c {
69
+ expect(mainCSS?.content).toContain(`.comp-with-image-propbg-image-c {
70
70
  background-image: url("public/playground_assets/kitten.png");
71
71
  }`)
72
72
  expect(mainCSS?.content).toContain(`.home-div {
@@ -1 +1 @@
1
- {"version":3,"file":"error-page-mapping.d.ts","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAE5F,cAAM,oBAAqB,YAAW,aAAa;IAC3C,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAsBjD;AAED,eAAO,MAAM,oBAAoB,sBAA6B,CAAA"}
1
+ {"version":3,"file":"error-page-mapping.d.ts","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAE5F,cAAM,oBAAqB,YAAW,aAAa;IAC3C,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAuBjD;AAED,eAAO,MAAM,oBAAoB,sBAA6B,CAAA"}
@@ -59,7 +59,8 @@ var HTMLErrorPageMapping = /** @class */ (function () {
59
59
  if (!fallback) {
60
60
  return [2 /*return*/, structure];
61
61
  }
62
- folder = files.get((_a = fallback.pageOptions) === null || _a === void 0 ? void 0 : _a.componentName) || files.get((_b = fallback.pageOptions) === null || _b === void 0 ? void 0 : _b.fileName);
62
+ folder = files.get("page-".concat((_a = fallback.pageOptions) === null || _a === void 0 ? void 0 : _a.componentName)) ||
63
+ files.get("page-".concat((_b = fallback.pageOptions) === null || _b === void 0 ? void 0 : _b.fileName));
63
64
  if (!folder) {
64
65
  return [2 /*return*/, structure];
65
66
  }
@@ -1 +1 @@
1
- {"version":3,"file":"error-page-mapping.js","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6DAA4F;AAE5F;IAAA;IA2BA,CAAC;IA1BO,wCAAS,GAAf,UAAgB,SAAiC;;;gBAC/C,sBAAO,SAAS,EAAA;;;KACjB;IAEK,uCAAQ,GAAd,UAAe,SAAiC;;;;;gBACtC,IAAI,GAAY,SAAS,KAArB,EAAE,KAAK,GAAK,SAAS,MAAd,CAAc;gBAC3B,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAA;gBACzC,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAC,KAAK,YAAK,OAAA,MAAA,KAAK,CAAC,WAAW,0CAAE,QAAQ,CAAA,EAAA,CAAC,CAAA;gBAC3E,IAAI,CAAC,QAAQ,EAAE;oBACb,sBAAO,SAAS,EAAA;iBACjB;gBAEK,MAAM,GACV,KAAK,CAAC,GAAG,CAAC,MAAA,QAAQ,CAAC,WAAW,0CAAE,aAAa,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,MAAA,QAAQ,CAAC,WAAW,0CAAE,QAAQ,CAAC,CAAA;gBAC7F,IAAI,CAAC,MAAM,EAAE;oBACX,sBAAO,SAAS,EAAA;iBACjB;gBAED,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,UAAC,IAAI;oBACxB,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,CAAC,WAAW,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,yBAAQ,CAAC,IAAI,EAAE;wBAClF,IAAI,CAAC,IAAI,GAAG,KAAK,CAAA;qBAClB;gBACH,CAAC,CAAC,CAAA;gBAEF,sBAAO,SAAS,EAAA;;;KACjB;IACH,2BAAC;AAAD,CAAC,AA3BD,IA2BC;AAEY,QAAA,oBAAoB,GAAG,IAAI,oBAAoB,EAAE,CAAA"}
1
+ {"version":3,"file":"error-page-mapping.js","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6DAA4F;AAE5F;IAAA;IA4BA,CAAC;IA3BO,wCAAS,GAAf,UAAgB,SAAiC;;;gBAC/C,sBAAO,SAAS,EAAA;;;KACjB;IAEK,uCAAQ,GAAd,UAAe,SAAiC;;;;;gBACtC,IAAI,GAAY,SAAS,KAArB,EAAE,KAAK,GAAK,SAAS,MAAd,CAAc;gBAC3B,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAA;gBACzC,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAC,KAAK,YAAK,OAAA,MAAA,KAAK,CAAC,WAAW,0CAAE,QAAQ,CAAA,EAAA,CAAC,CAAA;gBAC3E,IAAI,CAAC,QAAQ,EAAE;oBACb,sBAAO,SAAS,EAAA;iBACjB;gBAEK,MAAM,GACV,KAAK,CAAC,GAAG,CAAC,eAAQ,MAAA,QAAQ,CAAC,WAAW,0CAAE,aAAa,CAAE,CAAC;oBACxD,KAAK,CAAC,GAAG,CAAC,eAAQ,MAAA,QAAQ,CAAC,WAAW,0CAAE,QAAQ,CAAE,CAAC,CAAA;gBACrD,IAAI,CAAC,MAAM,EAAE;oBACX,sBAAO,SAAS,EAAA;iBACjB;gBAED,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,UAAC,IAAI;oBACxB,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,CAAC,WAAW,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,KAAK,yBAAQ,CAAC,IAAI,EAAE;wBAClF,IAAI,CAAC,IAAI,GAAG,KAAK,CAAA;qBAClB;gBACH,CAAC,CAAC,CAAA;gBAEF,sBAAO,SAAS,EAAA;;;KACjB;IACH,2BAAC;AAAD,CAAC,AA5BD,IA4BC;AAEY,QAAA,oBAAoB,GAAG,IAAI,oBAAoB,EAAE,CAAA"}
@@ -1,7 +1,11 @@
1
1
  import HTMLTemplate from './project-template';
2
- import { pluginCloneGlobals } from './plugin-clone-globals';
2
+ import { pluginCloneGlobals, ProjectPluginCloneGlobals } from './plugin-clone-globals';
3
3
  import { pluginHomeReplace } from './plugin-home-replace';
4
4
  import { htmlErrorPageMapping } from './error-page-mapping';
5
- declare const createHTMLProjectGenerator: () => import("@teleporthq/teleport-project-generator").ProjectGenerator;
6
- export { createHTMLProjectGenerator, HTMLTemplate, pluginCloneGlobals, pluginHomeReplace, htmlErrorPageMapping, };
5
+ interface HTMLProjectGeneratorOptions {
6
+ standaloneHtmlComponents?: boolean;
7
+ excludeHtmlComponentFiles?: boolean;
8
+ }
9
+ declare const createHTMLProjectGenerator: (options?: HTMLProjectGeneratorOptions) => import("@teleporthq/teleport-project-generator").ProjectGenerator;
10
+ export { createHTMLProjectGenerator, HTMLTemplate, pluginCloneGlobals, pluginHomeReplace, htmlErrorPageMapping, ProjectPluginCloneGlobals, };
7
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAKA,OAAO,YAAY,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAA;AAE3D,QAAA,MAAM,0BAA0B,yEAiC/B,CAAA;AAED,OAAO,EACL,0BAA0B,EAC1B,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,oBAAoB,GACrB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,YAAY,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAA;AACtF,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAA;AAE3D,UAAU,2BAA2B;IACnC,wBAAwB,CAAC,EAAE,OAAO,CAAA;IAClC,yBAAyB,CAAC,EAAE,OAAO,CAAA;CACpC;AAED,QAAA,MAAM,0BAA0B,aAAa,2BAA2B,sEA2CvE,CAAA;AAED,OAAO,EACL,0BAA0B,EAC1B,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,oBAAoB,EACpB,yBAAyB,GAC1B,CAAA"}
package/dist/cjs/index.js CHANGED
@@ -1,9 +1,20 @@
1
1
  "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
2
13
  var __importDefault = (this && this.__importDefault) || function (mod) {
3
14
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
15
  };
5
16
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.htmlErrorPageMapping = exports.pluginHomeReplace = exports.pluginCloneGlobals = exports.HTMLTemplate = exports.createHTMLProjectGenerator = void 0;
17
+ exports.ProjectPluginCloneGlobals = exports.htmlErrorPageMapping = exports.pluginHomeReplace = exports.pluginCloneGlobals = exports.HTMLTemplate = exports.createHTMLProjectGenerator = void 0;
7
18
  var teleport_project_generator_1 = require("@teleporthq/teleport-project-generator");
8
19
  var teleport_component_generator_html_1 = require("@teleporthq/teleport-component-generator-html");
9
20
  var teleport_component_generator_1 = require("@teleporthq/teleport-component-generator");
@@ -13,17 +24,25 @@ var project_template_1 = __importDefault(require("./project-template"));
13
24
  exports.HTMLTemplate = project_template_1.default;
14
25
  var plugin_clone_globals_1 = require("./plugin-clone-globals");
15
26
  Object.defineProperty(exports, "pluginCloneGlobals", { enumerable: true, get: function () { return plugin_clone_globals_1.pluginCloneGlobals; } });
27
+ Object.defineProperty(exports, "ProjectPluginCloneGlobals", { enumerable: true, get: function () { return plugin_clone_globals_1.ProjectPluginCloneGlobals; } });
16
28
  var plugin_home_replace_1 = require("./plugin-home-replace");
17
29
  Object.defineProperty(exports, "pluginHomeReplace", { enumerable: true, get: function () { return plugin_home_replace_1.pluginHomeReplace; } });
18
30
  var error_page_mapping_1 = require("./error-page-mapping");
19
31
  Object.defineProperty(exports, "htmlErrorPageMapping", { enumerable: true, get: function () { return error_page_mapping_1.htmlErrorPageMapping; } });
20
- var createHTMLProjectGenerator = function () {
32
+ var createHTMLProjectGenerator = function (options) {
33
+ if (options === void 0) { options = {}; }
34
+ var _a = options.standaloneHtmlComponents, standaloneHtmlComponents = _a === void 0 ? false : _a, _b = options.excludeHtmlComponentFiles, excludeHtmlComponentFiles = _b === void 0 ? false : _b;
35
+ // Create component generator factory that includes standaloneHtmlComponents option
36
+ // Must forward all params from bootstrapGenerator while adding our option
37
+ var componentGeneratorFactory = standaloneHtmlComponents
38
+ ? function (params) {
39
+ if (params === void 0) { params = {}; }
40
+ return (0, teleport_component_generator_html_1.createHTMLComponentGenerator)(__assign(__assign({}, params), { standaloneHtmlComponents: true }));
41
+ }
42
+ : teleport_component_generator_html_1.createHTMLComponentGenerator;
21
43
  var generator = (0, teleport_project_generator_1.createProjectGenerator)({
22
44
  id: 'teleport-project-html',
23
- components: {
24
- generator: teleport_component_generator_html_1.createHTMLComponentGenerator,
25
- path: ['components'],
26
- },
45
+ components: __assign({ generator: componentGeneratorFactory, path: ['components'] }, (excludeHtmlComponentFiles && { options: { excludeFiles: true } })),
27
46
  pages: {
28
47
  generator: teleport_component_generator_html_1.createHTMLComponentGenerator,
29
48
  path: [''],
@@ -37,7 +56,7 @@ var createHTMLProjectGenerator = function () {
37
56
  },
38
57
  projectStyleSheet: {
39
58
  generator: teleport_component_generator_1.createComponentGenerator,
40
- plugins: [(0, teleport_plugin_css_1.createStyleSheetPlugin)()],
59
+ plugins: [(0, teleport_plugin_css_1.createStyleSheetPlugin)({ fileName: 'style', relativeFontPath: true })],
41
60
  fileName: 'style',
42
61
  path: [''],
43
62
  importFile: true,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,qFAA+E;AAC/E,mGAA4F;AAC5F,yFAAmF;AACnF,uEAAwE;AACxE,0HAA2E;AAC3E,wEAA6C;AA0C3C,uBA1CK,0BAAY,CA0CL;AAzCd,+DAA2D;AA0CzD,mGA1CO,yCAAkB,OA0CP;AAzCpB,6DAAyD;AA0CvD,kGA1CO,uCAAiB,OA0CP;AAzCnB,2DAA2D;AA0CzD,qGA1CO,yCAAoB,OA0CP;AAxCtB,IAAM,0BAA0B,GAAG;IACjC,IAAM,SAAS,GAAG,IAAA,mDAAsB,EAAC;QACvC,EAAE,EAAE,uBAAuB;QAC3B,UAAU,EAAE;YACV,SAAS,EAAE,gEAA4B;YACvC,IAAI,EAAE,CAAC,YAAY,CAAC;SACrB;QACD,KAAK,EAAE;YACL,SAAS,EAAE,gEAA4B;YACvC,IAAI,EAAE,CAAC,EAAE,CAAC;YACV,OAAO,EAAE;gBACP,wBAAwB,EAAE,IAAI;aAC/B;SACF;QACD,MAAM,EAAE;YACN,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,CAAC,QAAQ,CAAC;SACjB;QACD,iBAAiB,EAAE;YACjB,SAAS,EAAE,uDAAwB;YACnC,OAAO,EAAE,CAAC,IAAA,4CAAsB,GAAE,CAAC;YACnC,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,CAAC,EAAE,CAAC;YACV,UAAU,EAAE,IAAI;SACjB;QACD,KAAK,EAAE;YACL,cAAc,EAAE,CAAC,8CAAY,CAAC;YAC9B,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,CAAC,EAAE,CAAC;SACX;KACF,CAAC,CAAA;IAEF,OAAO,SAAS,CAAA;AAClB,CAAC,CAAA;AAGC,gEAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qFAA+E;AAC/E,mGAA4F;AAC5F,yFAAmF;AACnF,uEAAwE;AACxE,0HAA2E;AAE3E,wEAA6C;AAyD3C,uBAzDK,0BAAY,CAyDL;AAxDd,+DAAsF;AAyDpF,mGAzDO,yCAAkB,OAyDP;AAGlB,0GA5D2B,gDAAyB,OA4D3B;AA3D3B,6DAAyD;AAyDvD,kGAzDO,uCAAiB,OAyDP;AAxDnB,2DAA2D;AAyDzD,qGAzDO,yCAAoB,OAyDP;AAlDtB,IAAM,0BAA0B,GAAG,UAAC,OAAyC;IAAzC,wBAAA,EAAA,YAAyC;IACnE,IAAA,KAAwE,OAAO,yBAA/C,EAAhC,wBAAwB,mBAAG,KAAK,KAAA,EAAE,KAAsC,OAAO,0BAAZ,EAAjC,yBAAyB,mBAAG,KAAK,KAAA,CAAY;IAEvF,mFAAmF;IACnF,0EAA0E;IAC1E,IAAM,yBAAyB,GAAG,wBAAwB;QACxD,CAAC,CAAC,UAAC,MAAmC;YAAnC,uBAAA,EAAA,WAAmC;YAClC,OAAA,IAAA,gEAA4B,wBAAM,MAAM,KAAE,wBAAwB,EAAE,IAAI,IAAG;QAA3E,CAA2E;QAC/E,CAAC,CAAC,gEAA4B,CAAA;IAEhC,IAAM,SAAS,GAAG,IAAA,mDAAsB,EAAC;QACvC,EAAE,EAAE,uBAAuB;QAC3B,UAAU,aACR,SAAS,EAAE,yBAAyB,EACpC,IAAI,EAAE,CAAC,YAAY,CAAC,IACjB,CAAC,yBAAyB,IAAI,EAAE,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC,CACtE;QACD,KAAK,EAAE;YACL,SAAS,EAAE,gEAA4B;YACvC,IAAI,EAAE,CAAC,EAAE,CAAC;YACV,OAAO,EAAE;gBACP,wBAAwB,EAAE,IAAI;aAC/B;SACF;QACD,MAAM,EAAE;YACN,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,CAAC,QAAQ,CAAC;SACjB;QACD,iBAAiB,EAAE;YACjB,SAAS,EAAE,uDAAwB;YACnC,OAAO,EAAE,CAAC,IAAA,4CAAsB,EAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,gBAAgB,EAAE,IAAI,EAAE,CAAC,CAAC;YAChF,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,CAAC,EAAE,CAAC;YACV,UAAU,EAAE,IAAI;SACjB;QACD,KAAK,EAAE;YACL,cAAc,EAAE,CAAC,8CAAY,CAAC;YAC9B,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,CAAC,EAAE,CAAC;SACX;KACF,CAAC,CAAA;IAEF,OAAO,SAAS,CAAA;AAClB,CAAC,CAAA;AAGC,gEAA0B"}
@@ -1,8 +1,15 @@
1
1
  import { ProjectPlugin, ProjectPluginStructure } from '@teleporthq/teleport-types';
2
+ interface ProjectPluginCloneGlobalsProps {
3
+ excludeGlobalsFromComponents?: boolean;
4
+ strictHtmlWhitespaceSensitivity?: boolean;
5
+ }
2
6
  declare class ProjectPluginCloneGlobals implements ProjectPlugin {
7
+ private excludeGlobalsFromComponents;
8
+ private strictHtmlWhitespaceSensitivity;
9
+ constructor(config?: ProjectPluginCloneGlobalsProps);
3
10
  runBefore(structure: ProjectPluginStructure): Promise<ProjectPluginStructure>;
4
11
  runAfter(structure: ProjectPluginStructure): Promise<ProjectPluginStructure>;
5
12
  }
6
- export declare const pluginCloneGlobals: Readonly<ProjectPluginCloneGlobals>;
7
- export {};
13
+ declare const pluginCloneGlobals: Readonly<ProjectPluginCloneGlobals>;
14
+ export { ProjectPluginCloneGlobals, pluginCloneGlobals };
8
15
  //# sourceMappingURL=plugin-clone-globals.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-clone-globals.d.ts","sourceRoot":"","sources":["../../src/plugin-clone-globals.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,aAAa,EACb,sBAAsB,EACvB,MAAM,4BAA4B,CAAA;AAInC,cAAM,yBAA0B,YAAW,aAAa;IAChD,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAqEjD;AAED,eAAO,MAAM,kBAAkB,qCAAiD,CAAA"}
1
+ {"version":3,"file":"plugin-clone-globals.d.ts","sourceRoot":"","sources":["../../src/plugin-clone-globals.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,aAAa,EACb,sBAAsB,EACvB,MAAM,4BAA4B,CAAA;AAKnC,UAAU,8BAA8B;IACtC,4BAA4B,CAAC,EAAE,OAAO,CAAA;IACtC,+BAA+B,CAAC,EAAE,OAAO,CAAA;CAC1C;AAED,cAAM,yBAA0B,YAAW,aAAa;IACtD,OAAO,CAAC,4BAA4B,CAAS;IAC7C,OAAO,CAAC,+BAA+B,CAAS;gBAEpC,MAAM,GAAE,8BAAmC;IAKjD,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAyFjD;AAED,QAAA,MAAM,kBAAkB,qCAAiD,CAAA;AACzE,OAAO,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,CAAA"}
@@ -58,16 +58,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
58
58
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
59
59
  }
60
60
  };
61
- var __importDefault = (this && this.__importDefault) || function (mod) {
62
- return (mod && mod.__esModule) ? mod : { "default": mod };
63
- };
64
61
  Object.defineProperty(exports, "__esModule", { value: true });
65
- exports.pluginCloneGlobals = void 0;
62
+ exports.pluginCloneGlobals = exports.ProjectPluginCloneGlobals = void 0;
66
63
  var teleport_types_1 = require("@teleporthq/teleport-types");
67
- var teleport_postprocessor_prettier_html_1 = __importDefault(require("@teleporthq/teleport-postprocessor-prettier-html"));
64
+ var teleport_postprocessor_prettier_html_1 = require("@teleporthq/teleport-postprocessor-prettier-html");
68
65
  var cheerio_1 = require("cheerio");
66
+ var path_1 = require("path");
69
67
  var ProjectPluginCloneGlobals = /** @class */ (function () {
70
- function ProjectPluginCloneGlobals() {
68
+ function ProjectPluginCloneGlobals(config) {
69
+ if (config === void 0) { config = {}; }
70
+ this.excludeGlobalsFromComponents = config.excludeGlobalsFromComponents || false;
71
+ this.strictHtmlWhitespaceSensitivity = config.strictHtmlWhitespaceSensitivity || false;
71
72
  }
72
73
  ProjectPluginCloneGlobals.prototype.runBefore = function (structure) {
73
74
  return __awaiter(this, void 0, void 0, function () {
@@ -77,20 +78,24 @@ var ProjectPluginCloneGlobals = /** @class */ (function () {
77
78
  });
78
79
  };
79
80
  ProjectPluginCloneGlobals.prototype.runAfter = function (structure) {
80
- var _a, _b;
81
+ var _a;
81
82
  return __awaiter(this, void 0, void 0, function () {
82
- var files, uidl, entryFile, parsedEntry, scriptTagsFromRootHead, scriptTagsFromRootBody, metaTagsFromRoot, titleTagsFromRoot, memoryFiles, id, fileId, newFiles;
83
- return __generator(this, function (_c) {
84
- switch (_c.label) {
83
+ var files, uidl, strategy, entryFile, prettierHTML, parsedEntry, scriptTagsFromRootHead, scriptTagsFromRootBody, metaTagsFromRoot, titleTagsFromRoot, memoryFiles, _loop_1, id;
84
+ var _this = this;
85
+ return __generator(this, function (_b) {
86
+ switch (_b.label) {
85
87
  case 0:
86
- files = structure.files, uidl = structure.uidl;
88
+ files = structure.files, uidl = structure.uidl, strategy = structure.strategy;
87
89
  entryFile = (_a = files.get('entry')) === null || _a === void 0 ? void 0 : _a.files[0];
88
90
  if (!entryFile) {
89
91
  return [2 /*return*/, structure];
90
92
  }
93
+ prettierHTML = (0, teleport_postprocessor_prettier_html_1.createPrettierHTMLPostProcessor)({
94
+ strictHtmlWhitespaceSensitivity: this.strictHtmlWhitespaceSensitivity,
95
+ });
91
96
  return [4 /*yield*/, Promise.resolve().then(function () { return __importStar(require('cheerio')); }).then(function (mod) { return mod.load; })];
92
97
  case 1:
93
- parsedEntry = (_c.sent())(entryFile.content);
98
+ parsedEntry = (_b.sent())(entryFile.content);
94
99
  scriptTagsFromRootHead = parsedEntry('head').find('script').toString();
95
100
  scriptTagsFromRootBody = parsedEntry('body').find('script').toString();
96
101
  metaTagsFromRoot = parsedEntry('head').find('meta').toString();
@@ -99,21 +104,28 @@ var ProjectPluginCloneGlobals = /** @class */ (function () {
99
104
  parsedEntry('body').find('script').remove();
100
105
  parsedEntry('head').find('meta').remove();
101
106
  parsedEntry('head').find('title').remove();
102
- if (Object.values(((_b = uidl.root) === null || _b === void 0 ? void 0 : _b.styleSetDefinitions) || {}).length > 0) {
103
- parsedEntry('head').append("<link rel=\"stylesheet\" href=\"./style.css\"></link>");
104
- }
105
107
  parsedEntry('head').append(scriptTagsFromRootHead.toString());
106
108
  memoryFiles = Object.fromEntries(files);
107
- for (id in memoryFiles) {
109
+ _loop_1 = function (id) {
108
110
  if (memoryFiles.hasOwnProperty(id)) {
109
- fileId = memoryFiles[id];
110
- newFiles = fileId.files.map(function (file) {
111
+ var fileId_1 = memoryFiles[id];
112
+ var newFiles = fileId_1.files.map(function (file) {
111
113
  var _a;
114
+ var _b, _c, _d;
115
+ var isComponentRoute = fileId_1.path.filter(Boolean).length > 0 &&
116
+ ((_b = strategy.components) === null || _b === void 0 ? void 0 : _b.path.join('/').indexOf(fileId_1.path.join('/'))) > -1;
117
+ if (_this.excludeGlobalsFromComponents && isComponentRoute) {
118
+ return file;
119
+ }
112
120
  if (file.fileType === teleport_types_1.FileType.HTML) {
113
121
  parsedEntry('body').empty();
114
122
  parsedEntry('head').find('title').remove();
115
123
  parsedEntry('head').find('meta').remove();
116
124
  var parsedIndividualFile = (0, cheerio_1.load)(file.content);
125
+ if (Object.values(((_c = uidl.root) === null || _c === void 0 ? void 0 : _c.styleSetDefinitions) || {}).length > 0) {
126
+ var relativePath = (0, path_1.join)((0, path_1.relative)(path_1.join.apply(void 0, fileId_1.path.filter(Boolean)), path_1.join.apply(void 0, (_d = structure.strategy.projectStyleSheet) === null || _d === void 0 ? void 0 : _d.path)), '.');
127
+ parsedIndividualFile('head').append("<link rel=\"stylesheet\" href=\"".concat(relativePath, "/").concat(structure.strategy.projectStyleSheet.fileName, ".css\"></link>"));
128
+ }
117
129
  var metaTags = parsedIndividualFile.root().find('meta');
118
130
  parsedEntry('head').prepend(metaTags.toString().concat(metaTagsFromRoot));
119
131
  metaTags.remove();
@@ -122,7 +134,7 @@ var ProjectPluginCloneGlobals = /** @class */ (function () {
122
134
  titleTags.remove();
123
135
  parsedEntry('body').append(parsedIndividualFile.html());
124
136
  parsedEntry('body').append(scriptTagsFromRootBody.toString());
125
- var prettyFile = (0, teleport_postprocessor_prettier_html_1.default)((_a = {},
137
+ var prettyFile = prettierHTML((_a = {},
126
138
  _a[teleport_types_1.FileType.HTML] = parsedEntry.html(),
127
139
  _a));
128
140
  return {
@@ -133,8 +145,11 @@ var ProjectPluginCloneGlobals = /** @class */ (function () {
133
145
  }
134
146
  return file;
135
147
  });
136
- files.set(id, { path: fileId.path, files: newFiles });
148
+ files.set(id, { path: fileId_1.path, files: newFiles });
137
149
  }
150
+ };
151
+ for (id in memoryFiles) {
152
+ _loop_1(id);
138
153
  }
139
154
  files.delete('entry');
140
155
  return [2 /*return*/, structure];
@@ -144,5 +159,7 @@ var ProjectPluginCloneGlobals = /** @class */ (function () {
144
159
  };
145
160
  return ProjectPluginCloneGlobals;
146
161
  }());
147
- exports.pluginCloneGlobals = Object.freeze(new ProjectPluginCloneGlobals());
162
+ exports.ProjectPluginCloneGlobals = ProjectPluginCloneGlobals;
163
+ var pluginCloneGlobals = Object.freeze(new ProjectPluginCloneGlobals());
164
+ exports.pluginCloneGlobals = pluginCloneGlobals;
148
165
  //# sourceMappingURL=plugin-clone-globals.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-clone-globals.js","sourceRoot":"","sources":["../../src/plugin-clone-globals.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6DAKmC;AACnC,0HAA2E;AAC3E,mCAA8B;AAE9B;IAAA;IA0EA,CAAC;IAzEO,6CAAS,GAAf,UAAgB,SAAiC;;;gBAC/C,sBAAO,SAAS,EAAA;;;KACjB;IAEK,4CAAQ,GAAd,UAAe,SAAiC;;;;;;;wBACtC,KAAK,GAAW,SAAS,MAApB,EAAE,IAAI,GAAK,SAAS,KAAd,CAAc;wBAC3B,SAAS,GAAG,MAAA,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,0CAAE,KAAK,CAAC,CAAC,CAAC,CAAA;wBAC9C,IAAI,CAAC,SAAS,EAAE;4BACd,sBAAO,SAAS,EAAA;yBACjB;wBAEoB,qBAAM,iEAAO,SAAS,OAAE,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,EAAR,CAAQ,CAAC,EAAA;;wBAA9D,WAAW,GAAG,CAAC,SAA+C,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC;wBAElF,sBAAsB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAAA;wBACtE,sBAAsB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAAA;wBACtE,gBAAgB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAA;wBAC9D,iBAAiB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAA;wBAEtE,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAA;wBAC3C,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAA;wBAC3C,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,CAAA;wBACzC,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;wBAE1C,IAAI,MAAM,CAAC,MAAM,CAAC,CAAA,MAAA,IAAI,CAAC,IAAI,0CAAE,mBAAmB,KAAI,EAAE,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;4BAClE,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,uDAAmD,CAAC,CAAA;yBAChF;wBAED,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,QAAQ,EAAE,CAAC,CAAA;wBAEvD,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;wBAE7C,KAAW,EAAE,IAAI,WAAW,EAAE;4BAC5B,IAAI,WAAW,CAAC,cAAc,CAAC,EAAE,CAAC,EAAE;gCAC5B,MAAM,GAAG,WAAW,CAAC,EAAE,CAAC,CAAA;gCAExB,QAAQ,GAAoB,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,UAAC,IAAI;;oCACtD,IAAI,IAAI,CAAC,QAAQ,KAAK,yBAAQ,CAAC,IAAI,EAAE;wCACnC,WAAW,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,CAAA;wCAC3B,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,CAAA;wCAC1C,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,CAAA;wCAEzC,IAAM,oBAAoB,GAAG,IAAA,cAAI,EAAC,IAAI,CAAC,OAAO,CAAC,CAAA;wCAE/C,IAAM,QAAQ,GAAG,oBAAoB,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;wCACzD,WAAW,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAA;wCACzE,QAAQ,CAAC,MAAM,EAAE,CAAA;wCAEjB,IAAM,SAAS,GAAG,oBAAoB,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;wCAC3D,WAAW,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAA;wCACxF,SAAS,CAAC,MAAM,EAAE,CAAA;wCAElB,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,CAAC,CAAA;wCACvD,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,QAAQ,EAAE,CAAC,CAAA;wCAE7D,IAAM,UAAU,GAAG,IAAA,8CAAY;4CAC7B,GAAC,yBAAQ,CAAC,IAAI,IAAG,WAAW,CAAC,IAAI,EAAE;gDACnC,CAAA;wCAEF,OAAO;4CACL,IAAI,EAAE,IAAI,CAAC,IAAI;4CACf,OAAO,EAAE,UAAU,CAAC,yBAAQ,CAAC,IAAI,CAAC;4CAClC,QAAQ,EAAE,yBAAQ,CAAC,IAAI;yCACxB,CAAA;qCACF;oCACD,OAAO,IAAI,CAAA;gCACb,CAAC,CAAC,CAAA;gCACF,KAAK,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAA;6BACtD;yBACF;wBAED,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;wBACrB,sBAAO,SAAS,EAAA;;;;KACjB;IACH,gCAAC;AAAD,CAAC,AA1ED,IA0EC;AAEY,QAAA,kBAAkB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,yBAAyB,EAAE,CAAC,CAAA"}
1
+ {"version":3,"file":"plugin-clone-globals.js","sourceRoot":"","sources":["../../src/plugin-clone-globals.ts"],"names":[],"mappings":"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"}
@@ -88,7 +88,7 @@ var ProjectPluginHomeReplace = /** @class */ (function () {
88
88
  return [2 /*return*/, structure];
89
89
  }
90
90
  component = teleport_shared_1.StringUtils.dashCaseToUpperCamelCase(sanitizedName);
91
- homeFile = files.get(component);
91
+ homeFile = files.get("component-".concat(component));
92
92
  if (!homeFile) {
93
93
  return [2 /*return*/, structure];
94
94
  }
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-home-replace.js","sourceRoot":"","sources":["../../src/plugin-home-replace.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAoE;AACpE,6DAKmC;AAEnC;IAAA;IAuDA,CAAC;IAtDO,4CAAS,GAAf,UAAgB,SAAiC;;;gBAC/C,sBAAO,SAAS,EAAA;;;KACjB;IAEK,2CAAQ,GAAd,UAAe,SAAiC;;;;gBACtC,IAAI,GAAY,SAAS,KAArB,EAAE,KAAK,GAAK,SAAS,MAAd,CAAc;gBACzB,gBAAgB,GAAK,IAAI,CAAC,IAAI,iBAAd,CAAc;gBAEtC,IAAI,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAE,KAAK,EAAE;oBACnB,iBAAiB,gBAAgB,CAAC,KAAK,aAA3B,CAA2B;oBACzC,MAAM,GAAG,2BAAS,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;oBAC3C,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,UAAC,KAAK,YAAK,OAAA,CAAA,MAAA,KAAK,CAAC,OAAO,0CAAE,KAAK,MAAK,cAAY,CAAA,EAAA,CAAC,CAAA;oBAClF,IAAI,CAAC,YAAY,EAAE;wBACjB,sBAAO,SAAS,EAAA;qBACjB;oBACK,aAAa,GAAG,6BAAW,CAAC,uBAAuB,CACvD,YAAY,CAAC,OAAO,CAAC,KAAe,CACrC,CAAA;oBACK,aAAW,6BAAW,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAA;oBAE/D,IAAI,UAAQ,KAAK,OAAO,EAAE;wBACxB,sBAAO,SAAS,EAAA;qBACjB;oBAEK,SAAS,GAAG,6BAAW,CAAC,wBAAwB,CAAC,aAAa,CAAC,CAAA;oBAC/D,QAAQ,GAAG,KAAK,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;oBACrC,IAAI,CAAC,QAAQ,EAAE;wBACb,sBAAO,SAAS,EAAA;qBACjB;oBAEK,QAAQ,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAClC,UAAC,EAAiC;4BAA/B,IAAI,UAAA,EAAE,QAAQ,cAAA;wBAAsB,OAAA,IAAI,KAAK,UAAQ,IAAI,QAAQ,KAAK,yBAAQ,CAAC,IAAI;oBAA/C,CAA+C,CACvF,CAAA;oBACD,IAAI,CAAC,QAAQ,EAAE;wBACb,sBAAO,SAAS,EAAA;qBACjB;oBAED,KAAK,CAAC,GAAG,CAAC,OAAO,EAAE;wBACjB,IAAI,EAAE,QAAQ,CAAC,IAAI;wBACnB,KAAK,kCACA,QAAQ,CAAC,KAAK,CAAC,MAAM,CACtB,UAAC,EAAkB;gCAAhB,IAAI,UAAA,EAAE,QAAQ,cAAA;4BAAO,OAAA,IAAI,KAAK,UAAQ,IAAI,QAAQ,KAAK,yBAAQ,CAAC,IAAI;wBAA/C,CAA+C,CACxE;kDAEI,QAAQ,KACX,IAAI,EAAE,OAAO;iCAEhB;qBACF,CAAC,CAAA;oBACF,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;iBACxB;gBAED,sBAAO,SAAS,EAAA;;;KACjB;IACH,+BAAC;AAAD,CAAC,AAvDD,IAuDC;AAEY,QAAA,iBAAiB,GAAG,IAAI,wBAAwB,EAAE,CAAA"}
1
+ {"version":3,"file":"plugin-home-replace.js","sourceRoot":"","sources":["../../src/plugin-home-replace.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAoE;AACpE,6DAKmC;AAEnC;IAAA;IAuDA,CAAC;IAtDO,4CAAS,GAAf,UAAgB,SAAiC;;;gBAC/C,sBAAO,SAAS,EAAA;;;KACjB;IAEK,2CAAQ,GAAd,UAAe,SAAiC;;;;gBACtC,IAAI,GAAY,SAAS,KAArB,EAAE,KAAK,GAAK,SAAS,MAAd,CAAc;gBACzB,gBAAgB,GAAK,IAAI,CAAC,IAAI,iBAAd,CAAc;gBAEtC,IAAI,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAE,KAAK,EAAE;oBACnB,iBAAiB,gBAAgB,CAAC,KAAK,aAA3B,CAA2B;oBACzC,MAAM,GAAG,2BAAS,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;oBAC3C,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,UAAC,KAAK,YAAK,OAAA,CAAA,MAAA,KAAK,CAAC,OAAO,0CAAE,KAAK,MAAK,cAAY,CAAA,EAAA,CAAC,CAAA;oBAClF,IAAI,CAAC,YAAY,EAAE;wBACjB,sBAAO,SAAS,EAAA;qBACjB;oBACK,aAAa,GAAG,6BAAW,CAAC,uBAAuB,CACvD,YAAY,CAAC,OAAO,CAAC,KAAe,CACrC,CAAA;oBACK,aAAW,6BAAW,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAA;oBAE/D,IAAI,UAAQ,KAAK,OAAO,EAAE;wBACxB,sBAAO,SAAS,EAAA;qBACjB;oBAEK,SAAS,GAAG,6BAAW,CAAC,wBAAwB,CAAC,aAAa,CAAC,CAAA;oBAC/D,QAAQ,GAAG,KAAK,CAAC,GAAG,CAAC,oBAAa,SAAS,CAAE,CAAC,CAAA;oBACpD,IAAI,CAAC,QAAQ,EAAE;wBACb,sBAAO,SAAS,EAAA;qBACjB;oBAEK,QAAQ,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAClC,UAAC,EAAiC;4BAA/B,IAAI,UAAA,EAAE,QAAQ,cAAA;wBAAsB,OAAA,IAAI,KAAK,UAAQ,IAAI,QAAQ,KAAK,yBAAQ,CAAC,IAAI;oBAA/C,CAA+C,CACvF,CAAA;oBACD,IAAI,CAAC,QAAQ,EAAE;wBACb,sBAAO,SAAS,EAAA;qBACjB;oBAED,KAAK,CAAC,GAAG,CAAC,OAAO,EAAE;wBACjB,IAAI,EAAE,QAAQ,CAAC,IAAI;wBACnB,KAAK,kCACA,QAAQ,CAAC,KAAK,CAAC,MAAM,CACtB,UAAC,EAAkB;gCAAhB,IAAI,UAAA,EAAE,QAAQ,cAAA;4BAAO,OAAA,IAAI,KAAK,UAAQ,IAAI,QAAQ,KAAK,yBAAQ,CAAC,IAAI;wBAA/C,CAA+C,CACxE;kDAEI,QAAQ,KACX,IAAI,EAAE,OAAO;iCAEhB;qBACF,CAAC,CAAA;oBACF,KAAK,CAAC,MAAM,CAAC,SAAS,CAAC,CAAA;iBACxB;gBAED,sBAAO,SAAS,EAAA;;;KACjB;IACH,+BAAC;AAAD,CAAC,AAvDD,IAuDC;AAEY,QAAA,iBAAiB,GAAG,IAAI,wBAAwB,EAAE,CAAA"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../teleport-types/dist/cjs/helper.d.ts","../../../teleport-types/dist/cjs/uidl.d.ts","../../../teleport-types/dist/cjs/generators.d.ts","../../../teleport-types/dist/cjs/errors.d.ts","../../../teleport-types/dist/cjs/vuidl.d.ts","../../../teleport-types/dist/cjs/index.d.ts","../../src/error-page-mapping.ts","../../../teleport-project-generator/dist/cjs/index.d.ts","../../../teleport-component-generator-html/dist/cjs/plain-html-mapping.d.ts","../../../teleport-component-generator-html/dist/cjs/index.d.ts","../../../teleport-component-generator/dist/cjs/index.d.ts","../../../teleport-plugin-css/dist/cjs/style-sheet.d.ts","../../../teleport-plugin-css/dist/cjs/index.d.ts","../../../teleport-postprocessor-prettier-html/dist/cjs/index.d.ts","../../src/project-template.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/domelementtype/lib/index.d.ts","../../../../node_modules/domhandler/lib/node.d.ts","../../../../node_modules/domhandler/lib/index.d.ts","../../../../node_modules/htmlparser2/lib/Tokenizer.d.ts","../../../../node_modules/htmlparser2/lib/Parser.d.ts","../../../../node_modules/dom-serializer/lib/index.d.ts","../../../../node_modules/domutils/lib/stringify.d.ts","../../../../node_modules/domutils/lib/traversal.d.ts","../../../../node_modules/domutils/lib/manipulation.d.ts","../../../../node_modules/domutils/lib/querying.d.ts","../../../../node_modules/domutils/lib/legacy.d.ts","../../../../node_modules/domutils/lib/helpers.d.ts","../../../../node_modules/domutils/lib/feeds.d.ts","../../../../node_modules/domutils/lib/index.d.ts","../../../../node_modules/htmlparser2/lib/index.d.ts","../../../../node_modules/css-what/lib/es/types.d.ts","../../../../node_modules/css-what/lib/es/parse.d.ts","../../../../node_modules/css-what/lib/es/stringify.d.ts","../../../../node_modules/css-what/lib/es/index.d.ts","../../../../node_modules/css-select/lib/types.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/filters.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/aliases.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/index.d.ts","../../../../node_modules/css-select/lib/index.d.ts","../../../../node_modules/cheerio-select/lib/index.d.ts","../../../../node_modules/cheerio/lib/options.d.ts","../../../../node_modules/cheerio/lib/types.d.ts","../../../../node_modules/cheerio/lib/api/attributes.d.ts","../../../../node_modules/cheerio/lib/api/traversing.d.ts","../../../../node_modules/cheerio/lib/api/manipulation.d.ts","../../../../node_modules/cheerio/lib/api/css.d.ts","../../../../node_modules/cheerio/lib/api/forms.d.ts","../../../../node_modules/cheerio/lib/cheerio.d.ts","../../../../node_modules/cheerio/lib/static.d.ts","../../../../node_modules/cheerio/lib/load.d.ts","../../../../node_modules/cheerio/lib/index.d.ts","../../src/plugin-clone-globals.ts","../../../teleport-shared/dist/cjs/constants/index.d.ts","../../../teleport-shared/dist/cjs/utils/string-utils.d.ts","../../../teleport-shared/dist/cjs/utils/uidl-utils.d.ts","../../../teleport-shared/dist/cjs/utils/generic.d.ts","../../../teleport-shared/dist/cjs/index.d.ts","../../src/plugin-home-replace.ts","../../src/index.ts","../../src/path-browserisify.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/jest/ts3.2/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"b09482535eb7d553ab0507e93616b811a3194a0339292f0e534787e4b01568bb","71f1f30e0149642a4280d06b9dfcbc398ba31ca7c14ff3c868220c9a56bcdb50","dc19b304f9b96efbea7359264ac17eaf4c2d3fd231df7306eddfb983039785ca","71a689048584cde03cb508408ae7c3b04ad8f10af887865e8b65c27ed9d91488","d50fe6e9eb7f4722fa789aab25bf60d0dfbcc36cc76af4a7d7af2b5886665f93","6ba1631f84ef4507073189c4ada06d6de8bac89375ea3b49e34e49006cc44a3f",{"version":"79ed47dacc524057d7d29baa43897470a6cf27d87591cbb06215f093ce4be566","signature":"49689145972470f1b0a6891fa0d64be5dd5476a1457e9947c0e91b604df71922"},"25a73cc7c9a88cf903af5d9a825a7dce39625e365c6edb050558ea09d2762648","e90c2bd182fb1a1a64b690a6f1a0d49058edcd8467a2354960f89aa87774f3c5","867472edc1aa1bfd1b063dbbabb97a29f6abab171330b0122ad1656531954f4b","dbd4e3c1c81a350659f3ba09d931a953c37f6ea39d9e5880decfb22130fbbf70","9bf115ff19832e75f39c112dd4fc74a806883f01e5e6d1e5c14934800685da13","63a9f42bb397753a62c683dda5329a13b46e2bc09c3558a3118fdd0e6f25b7f6","b3fb53b30cf0b640a39846a5d788fe499c263e39242e3c42b5306bd1fc27b36c",{"version":"159bd0fa1a78d6a8ea1813ce437c72f3fbf67264187ec830b0f292fe1dea3288","signature":"facb3f32137e2555999c9e0a3a906fca501306bdbba7020d7e08e691d5c42206"},"ba8691cf6bea9d53e6bf6cbc22af964a9633a21793981a1be3dce65e7a714d8b","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3",{"version":"7c387a02bf156d8d45667134d32518ac3ca1b99ca50ca9deff2c1a03eb6d1a81","affectsGlobalScope":true},"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","f993522fd7d01ae1ead930091fe35130b8415720d6c2123dc2a7e8eb11bb3cba",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","b787b5b54349a24f07d089b612a9fb8ff024dbbe991ff52ea2b188a6b1230644","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","df6d4b6ba1e64f682091862faa30104e93891f9e7202d006bf5e7a88ab4a0dbe","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"c2fcbd6fad600e96fee8c5df1a62e908d477f5b47a9374b2bab7e74f52cfcc92","affectsGlobalScope":true},"0391eb2e0cf2a8d329ba6958f20f2d3d24e53787d65e667f636cc97a5365c046","cc68e79b99f80e4dfd01967ec96be69efb0ff5bd7f779d9a2cc09dfe590ffd28","91d3d8f536f22dcaeeace0fc6f3544d3562e266a27cf3a2fe280b8051af5d006","9503113febdd737095465792cc074d541902c82c0aea3922f940de18784812ad","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"6d7ef36605d74efa08b42b40cd31b1844702a72a9e410945da8f40809097f82c","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"69e93290f59948789d5fce61cb0b89dde93747a4576744d0d6fae41ee3991646","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","ff1bad1849903b15fba47f3c29bdec5f97324874c93933a89b2bca28a23977fb","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda",{"version":"fddc2fac1bf6896d9c16acab1e5e44164a9b631b4812a3dd805058f188dac75e","affectsGlobalScope":true},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"22d7b95cb63dead43834ae20ee492c9c8b6d90db3957d21665199f0efb1d3e26","affectsGlobalScope":true},{"version":"a9fc1469744055a3435f203123246b96c094e7ff8c4e1c3863829d9b705b7a34","affectsGlobalScope":true},"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d5be4343a9ace4611f04a6fffd91ceba91265fa15bfb0149306e0a6963e1a015","cbe4c1c3102db917851a77fe8fce9f00365da63876e4f0822f4bb4bd954f5ef8","622fa89fbaee1b771e58517dbbb3ed8bf60aa4bd501a81b129032c981e825df4","261bd352b27231e30932efafb4e163919c64aad439b7bd19c819c1b2b033885f","a9f87332c75ff064d1113454a108c237cc9f2c792c8175a1ca432cd81fcc6e2b","21f4b283586d94c6df8e71a811d8cadc32e7510ce8027b7901a22524de2b7cca","1c12378cf61ec63760cf5dacea71d7f3372ffce3be36fa06f40b2cd6ce580b76","300089d670fb821ab229218307330be2f71cc6917b550b4f6d915b3f13ee5b45","7d27c68bf0ffa6e7906eb99540ac506dbe25454ea60f705b561b91c9e5449864","648a19f8cd734a9448d9a70c968c793d00cb573d2b4258269db1a4e67d9cf84c","55173f8ae914f540b17307bbd0f96b0ec5debafa94eaa5a185d2b57cec64dff1","88b4ebb3cdd1df4a29fb82a1c7e5ef66a0ee652fc33e7ab619037c73431e0a5c","aecfe4c19ff5bd1d3e3735a007e96dacfe71e22605ce10d782d1e001d11d071a","6132270ffd0016d6c16cdaaf2aeae132982ec2e4d2b655b4cf1bb4107148c6aa","50cf61a7d6c89a070a90bd8a86c19157a7e66ba44362c1b00264e3644498bd87","ddad45d65ef8133e1f0cbd4b541219c70bcfc7c460d3deef668a2b7dc65309c2","6aa06d658c0520bd80e10910e90938464d599b458b3100b904b9371a36672aea","63959ac370486f4540356911537fe6f1f00752b39e808c68c79bd4941f5ebfdd","65898b7aa4d4d0c1b6a86a00127c64d5098207af330bd94d6c6d1772f1dac99e","4b9310761d049db02c1c21994ed2114ac71b28df52224518cf7b9241c8e042fb","3f0f50fe50424eaeb68ff303dda45f0725a267b542070163f1aed99d757779cd","602be747befe4390633c8d470bdad9f464ad0c41f8dedd1a1e528dc2922a593d","757066997ceb2aecb6fb0310759698023e754deeaea4d116c999472bf818c791","10af4b2f1d59591aa93d57c6152326850a8c28f126fffedd726432b152740609","4cf25ed0d118d7e4624825af780e9f69c688040c764b0c426af36ab44c2f92b4","bf75ca5b3ce462ab57a892613154b1e41fbf0add55bea4de14c398071494446e","f05e8fe6cc0dd666353105e181af55d910219765287fd1217d2232aa9f17c5d2","f704f00d5cf1056c4aab14efd50a26fb33cdf52c775c67c82759a588f3e7ff57","2447f4390bcee60c41b754b28e711ca13e8bd28b5bb32b1bfb0ad1ce3b32df88","ae2ac975eda75f6b0a2103f8b84b25fea22d6603fcc052ca51305c2cc7839a3a","f7863b0f771d00b4bd63ae91bc49266b58760170111fff924bf5aaa407051185","158c1df81da4ba785bb31c6512b1c013361a5654366a20557b30ba3f54053931","870654f1e76948231de54e5ec9e0c1f9b9385392454d2e614f6873010036f7dc","183c8bb9f0f399fe2383135c7c02e8447486200e5b7a6bac297fa920e0a8f01f","836a9758bd685bab5a312dfe65368e430a99ed9f26c6943617cd869fee83c22b","5b86de8dd75c48064cac9aa37641c7fef5eedcb63541c8ec8e798898a116d103","9bacb937a771858755bbdd192db5e5f6dc666829d2626e11676e4c0d8bf33a61","de76fe40240a2965fcb79a04c9e72a78cc6688633af79422e74f837f3f40de2c",{"version":"493009f97d4c7fbe6044856c069eed286f189c549203d98ab4e16d1bf2dc0276","signature":"711771f4dad9a39cda88d952cb674c841e172aa43fd27893b94329bff7fcbe3f"},"afa9397f3aa80897cec3ddec1dd6f7c8741106ce96090f74df790a474b114ed6","8c08668019739abf45bfa24fb3559a4362161c438e71e3925f06bd6ea2792883","22c6f439ba8a0f6347a16d6fad503bb8a2fbfe778e5cf5c90918659c653c8a8c","2c55653d46d0d2bfa1b84b54c3a4ffa6e43de5b05c9f808e46b42adffc4e3e92","1875bde1eafbc9d923cd1624ac1fd6da0af82347c2a9c7a847a660cc4fa01a33",{"version":"d978f70e2361a04b460027d1f51cf888ea562c59a6cd7218b64063b94b113f57","signature":"effbe6684df5343a270d3218b7019e167b2452e0e8c37fbc385785d0223cb14e"},{"version":"2174a971ad8ac125c01ab42b2fa25e2ec8acff23bb16ef52c45022ff6be21837","signature":"e6d898f16675c67a08a5fe0d852953f48216f2aad1d554cac1ece72271a60baa"},"a543a3dc6a07db81e43c3a883194c2e0ef68318fcdf850c0daf6895d5d9d580d","e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7","b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44","affectsGlobalScope":true},{"version":"d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"target":1},"fileIdsList":[[104,162,164],[104],[104,158,159],[104,158,159,160,161],[104,163],[104,165],[58,104],[61,104],[62,67,95,104],[63,74,75,82,92,103,104],[63,64,74,82,104],[65,104],[66,67,75,83,104],[67,92,100,104],[68,70,74,82,104],[69,104],[70,71,104],[74,104],[72,74,104],[74,75,76,92,103,104],[74,75,76,89,92,95,104],[104,108],[70,74,77,82,92,103,104],[74,75,77,78,82,92,100,103,104],[77,79,92,100,103,104],[58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110],[74,80,104],[81,103,104,108],[70,74,82,92,104],[83,104],[84,104],[61,85,104],[86,102,104,108],[87,104],[88,104],[74,89,90,104],[89,91,104,106],[62,74,92,93,94,95,104],[62,92,94,104],[92,93,104],[95,104],[96,104],[61,92,104],[74,98,99,104],[98,99,104],[67,82,92,100,104],[101,104],[82,102,104],[62,77,88,103,104],[67,104],[92,104,105],[104,106],[104,107],[62,67,74,76,85,92,103,104,106,108],[92,104,109],[104,114,136],[104,114,145],[104,114,139,145],[104,111,114,138,139,140,141,142,143,144],[104,111,114,138,139,145,146,147],[104,111,114,138,139,145,146],[104,111,114,126,137],[104,114,138,139,148],[104,130,131,135],[104,131],[104,130,131,132,133,134],[104,130,131],[104,130],[104,127,128,129],[104,127],[104,114],[104,113],[104,112],[104,114,118,119,120,121,122,123,124],[104,112,114],[104,114,117],[104,115],[104,112,114,115,116,125],[48,51,104],[48,104],[48,54,104],[49,50,52,53,55,56,57,104,149,155],[48,56,104,148],[48,104,154],[104,150,151,152,153],[44,104],[44,45,46,47,104],[43,104],[43,44,104],[48],[49,50,57,149,155]],"referencedMap":[[165,1],[158,2],[160,3],[162,4],[161,3],[159,2],[164,5],[163,2],[166,6],[58,7],[59,7],[61,8],[62,9],[63,10],[64,11],[65,12],[66,13],[67,14],[68,15],[69,16],[70,17],[71,17],[73,18],[72,19],[74,18],[75,20],[76,21],[60,22],[110,2],[77,23],[78,24],[79,25],[111,26],[80,27],[81,28],[82,29],[83,30],[84,31],[85,32],[86,33],[87,34],[88,35],[89,36],[90,36],[91,37],[92,38],[94,39],[93,40],[95,41],[96,42],[97,43],[98,44],[99,45],[100,46],[101,47],[102,48],[103,49],[104,50],[105,51],[106,52],[107,53],[108,54],[109,55],[137,56],[140,57],[143,57],[144,57],[142,58],[141,58],[145,59],[148,60],[147,61],[138,62],[146,63],[139,57],[136,64],[134,2],[132,65],[135,66],[133,67],[131,68],[130,69],[128,70],[129,70],[127,2],[117,71],[112,2],[114,72],[113,73],[124,71],[123,71],[125,74],[122,75],[120,71],[121,71],[118,76],[119,71],[116,77],[115,2],[126,78],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[52,79],[51,80],[53,80],[55,81],[54,80],[56,80],[49,80],[156,82],[157,31],[149,83],[155,84],[57,2],[50,80],[150,80],[154,85],[153,2],[151,2],[152,80],[46,2],[45,86],[43,2],[48,87],[44,88],[47,89]],"exportedModulesMap":[[165,1],[158,2],[160,3],[162,4],[161,3],[159,2],[164,5],[163,2],[166,6],[58,7],[59,7],[61,8],[62,9],[63,10],[64,11],[65,12],[66,13],[67,14],[68,15],[69,16],[70,17],[71,17],[73,18],[72,19],[74,18],[75,20],[76,21],[60,22],[110,2],[77,23],[78,24],[79,25],[111,26],[80,27],[81,28],[82,29],[83,30],[84,31],[85,32],[86,33],[87,34],[88,35],[89,36],[90,36],[91,37],[92,38],[94,39],[93,40],[95,41],[96,42],[97,43],[98,44],[99,45],[100,46],[101,47],[102,48],[103,49],[104,50],[105,51],[106,52],[107,53],[108,54],[109,55],[137,56],[140,57],[143,57],[144,57],[142,58],[141,58],[145,59],[148,60],[147,61],[138,62],[146,63],[139,57],[136,64],[134,2],[132,65],[135,66],[133,67],[131,68],[130,69],[128,70],[129,70],[127,2],[117,71],[112,2],[114,72],[113,73],[124,71],[123,71],[125,74],[122,75],[120,71],[121,71],[118,76],[119,71],[116,77],[115,2],[126,78],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[52,79],[51,80],[53,80],[55,81],[54,80],[56,80],[49,90],[156,91],[157,31],[149,90],[155,90],[50,80],[150,80],[154,85],[153,2],[151,2],[152,80],[46,2],[45,86],[43,2],[48,87],[44,88],[47,89]],"semanticDiagnosticsPerFile":[165,158,160,162,161,159,164,163,166,58,59,61,62,63,64,65,66,67,68,69,70,71,73,72,74,75,76,60,110,77,78,79,111,80,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,137,140,143,144,142,141,145,148,147,138,146,139,136,134,132,135,133,131,130,128,129,127,117,112,114,113,124,123,125,122,120,121,118,119,116,115,126,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,52,51,53,55,54,56,49,156,157,149,155,57,50,150,154,153,151,152,46,45,43,48,44,47]},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../teleport-types/dist/cjs/helper.d.ts","../../../teleport-types/dist/cjs/uidl.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../teleport-types/dist/cjs/generators.d.ts","../../../teleport-types/dist/cjs/errors.d.ts","../../../teleport-types/dist/cjs/vuidl.d.ts","../../../teleport-types/dist/cjs/index.d.ts","../../src/error-page-mapping.ts","../../../teleport-project-generator/dist/cjs/index.d.ts","../../../teleport-component-generator-html/dist/cjs/plain-html-mapping.d.ts","../../../teleport-component-generator-html/dist/cjs/index.d.ts","../../../teleport-component-generator/dist/cjs/index.d.ts","../../../teleport-plugin-css/dist/cjs/style-sheet.d.ts","../../../teleport-plugin-css/dist/cjs/index.d.ts","../../../teleport-postprocessor-prettier-html/dist/cjs/index.d.ts","../../src/project-template.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/domelementtype/lib/index.d.ts","../../../../node_modules/domhandler/lib/node.d.ts","../../../../node_modules/domhandler/lib/index.d.ts","../../../../node_modules/htmlparser2/lib/Tokenizer.d.ts","../../../../node_modules/htmlparser2/lib/Parser.d.ts","../../../../node_modules/dom-serializer/lib/index.d.ts","../../../../node_modules/domutils/lib/stringify.d.ts","../../../../node_modules/domutils/lib/traversal.d.ts","../../../../node_modules/domutils/lib/manipulation.d.ts","../../../../node_modules/domutils/lib/querying.d.ts","../../../../node_modules/domutils/lib/legacy.d.ts","../../../../node_modules/domutils/lib/helpers.d.ts","../../../../node_modules/domutils/lib/feeds.d.ts","../../../../node_modules/domutils/lib/index.d.ts","../../../../node_modules/htmlparser2/lib/index.d.ts","../../../../node_modules/css-what/lib/es/types.d.ts","../../../../node_modules/css-what/lib/es/parse.d.ts","../../../../node_modules/css-what/lib/es/stringify.d.ts","../../../../node_modules/css-what/lib/es/index.d.ts","../../../../node_modules/css-select/lib/types.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/filters.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/aliases.d.ts","../../../../node_modules/css-select/lib/pseudo-selectors/index.d.ts","../../../../node_modules/css-select/lib/index.d.ts","../../../../node_modules/cheerio-select/lib/index.d.ts","../../../../node_modules/cheerio/lib/options.d.ts","../../../../node_modules/cheerio/lib/types.d.ts","../../../../node_modules/cheerio/lib/api/attributes.d.ts","../../../../node_modules/cheerio/lib/api/traversing.d.ts","../../../../node_modules/cheerio/lib/api/manipulation.d.ts","../../../../node_modules/cheerio/lib/api/css.d.ts","../../../../node_modules/cheerio/lib/api/forms.d.ts","../../../../node_modules/cheerio/lib/cheerio.d.ts","../../../../node_modules/cheerio/lib/static.d.ts","../../../../node_modules/cheerio/lib/load.d.ts","../../../../node_modules/cheerio/lib/index.d.ts","../../src/plugin-clone-globals.ts","../../../teleport-shared/dist/cjs/constants/index.d.ts","../../../teleport-shared/dist/cjs/utils/string-utils.d.ts","../../../teleport-shared/dist/cjs/utils/uidl-utils.d.ts","../../../teleport-shared/dist/cjs/utils/generic.d.ts","../../../teleport-shared/dist/cjs/index.d.ts","../../src/plugin-home-replace.ts","../../src/index.ts","../../src/path-browserisify.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/jest/ts3.2/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14fc7efae8b184b18019a5906c6f6de752823b44ff1acf7924bbdc8877ded21b","3b199dcdbfbb0bcbda5433c6d54c01db38fc83861a13d34e7304e0e51e13808b","8d27e5f73b75340198b2df36f39326f693743e64006bd7b88a925a5f285df628","b47f316947969cdd837116976c1760a031d13350572c63754fd7a1e87d0c1e3b","71a689048584cde03cb508408ae7c3b04ad8f10af887865e8b65c27ed9d91488","d9118ed71b9968fea213b070209081a1b1c378b55ddcd026fb1ae8a7f52c15b7","6ba1631f84ef4507073189c4ada06d6de8bac89375ea3b49e34e49006cc44a3f",{"version":"3f66330e8b4197a482f4c9cc3f50aeebde7505106f23f94ff8f8f812179544d5","signature":"49689145972470f1b0a6891fa0d64be5dd5476a1457e9947c0e91b604df71922"},"bd45acc99cfbfd26ae4630e190c168a5b7f6d3d2bda2ca0504c9bbb5f8feb703","e90c2bd182fb1a1a64b690a6f1a0d49058edcd8467a2354960f89aa87774f3c5","867472edc1aa1bfd1b063dbbabb97a29f6abab171330b0122ad1656531954f4b","dbd4e3c1c81a350659f3ba09d931a953c37f6ea39d9e5880decfb22130fbbf70","d9073e5cceff020600ceb1d43e1df68fcaee78d21ab2dd79e19746a68c9064c6","df30fdfe418b2ae60735252593e0a4425979c2f5b693dae133769c7d3e377e29","6d37944cc0a56ea0751a75c29f6faed95f59d78a11ca9e03450d2d519d43688d",{"version":"159bd0fa1a78d6a8ea1813ce437c72f3fbf67264187ec830b0f292fe1dea3288","signature":"facb3f32137e2555999c9e0a3a906fca501306bdbba7020d7e08e691d5c42206"},"0b4bc32128fda7bb0752cf284730dd3a817aae04a3d7f92e3b2d54bd61362fe1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"5f290ea7efbe9d8431e10df12c0d5672b67988e7c171c2d356749fac70347a55","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"49c89f8fa09d21c161e6a367448639e032f42d77cc2ec8ab54ecb8fa9a3ad59f","affectsGlobalScope":true},"e4b50850c2a62c7750428e452ee24b167180104d514d5e5c0ca691753365f610","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","0f9061846236850a872cb44097d071631e93c8749a8b16c191fe3c2a48faede4","e46fa644658c2d6e5c85e954ea76b92c97d63f0851d3ccdab8c2a80d5962aaa9","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","a307d22a0130ac94c1a17fffa6d57ac272deb5838cb966a9420911d259cdf1be","d2e415abf6cb81ac9e2700b4db5ea7be76b997e812285b8e5e1e414eb2750b6e","09d6cebdced6aa1181ac1523c8f22a133f5ed80589678b64051f0602f0518374",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"7c35691dc3972ff1507d8dd279d833f540973d0917bde22e191cf7a8feaac29f","affectsGlobalScope":true},"62662d7a886e5cfa870685720fd27b763743ca4d2cf29326f75d76606a64eadd","b8c670688bd228d3cc9c169690b09b687188c50ff263a94df63b207701105ad9","d8e16905907111390d5a943816306ae997dfe56476f14142166f8b13ee322eea","8068c911a1c40bc6c5ffc58c625b21d807778f6aa6d63a73e6f04f88bcac5b79","a1dbce56ad5f3a37caafb9033c9d190a199217d673f5fa099c8968d471a2fdaa","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"269d0ea3202820c29a32c1f2a357837a4f1918426844f7e7c90af15ec40d1dc1","66432f885e30cf471573de22a5af5eca9ab46b37b122aec98beadf77e9b7df24","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"034e635df3c014df1d6b1110b724ca0c4d2d324b45a84974c7d6931f9cf95ea7","affectsGlobalScope":true},{"version":"87f9456115554cb0f78f098ddbd585096871c19d2d05274c1b1b4ade3151da78","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","da618f0ea09d95c3b51514de43bf97dab008c85bede58aa57cf95e4984c7c957","48a35b181ecf47dbbc0a7ab4b5ba778d91eaa838ba42bf4aaaead42be77ef39a","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"ce73eb199c4bf96c015f069aac161488ed73ebeaea3d87b6d5aa9a968a7b38d4","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","962f105729d5b888c8b70e193f6020ee92c6c8144c827de40f80d65dd188ad7f","ac74e2b754fba690036f8221d978f6debb867462b87af254f24e924b677395d0","80858f6de9af22e53aff221fe3590215ea544c2aeb2cc60cf8e08a9c785c8fef",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"340659b96782f5813aad6c1f89ea1b83b2f3fa993115c7b30366375d9bae5a4e","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"895ca532c15c77cbb6a871af1870b57bcd0ca4f38a1bd69669dd0e95bb58565a","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","cbe4c1c3102db917851a77fe8fce9f00365da63876e4f0822f4bb4bd954f5ef8","622fa89fbaee1b771e58517dbbb3ed8bf60aa4bd501a81b129032c981e825df4","261bd352b27231e30932efafb4e163919c64aad439b7bd19c819c1b2b033885f","a9f87332c75ff064d1113454a108c237cc9f2c792c8175a1ca432cd81fcc6e2b","21f4b283586d94c6df8e71a811d8cadc32e7510ce8027b7901a22524de2b7cca","1c12378cf61ec63760cf5dacea71d7f3372ffce3be36fa06f40b2cd6ce580b76","300089d670fb821ab229218307330be2f71cc6917b550b4f6d915b3f13ee5b45","7d27c68bf0ffa6e7906eb99540ac506dbe25454ea60f705b561b91c9e5449864","648a19f8cd734a9448d9a70c968c793d00cb573d2b4258269db1a4e67d9cf84c","55173f8ae914f540b17307bbd0f96b0ec5debafa94eaa5a185d2b57cec64dff1","88b4ebb3cdd1df4a29fb82a1c7e5ef66a0ee652fc33e7ab619037c73431e0a5c","aecfe4c19ff5bd1d3e3735a007e96dacfe71e22605ce10d782d1e001d11d071a","6132270ffd0016d6c16cdaaf2aeae132982ec2e4d2b655b4cf1bb4107148c6aa","50cf61a7d6c89a070a90bd8a86c19157a7e66ba44362c1b00264e3644498bd87","ddad45d65ef8133e1f0cbd4b541219c70bcfc7c460d3deef668a2b7dc65309c2","6aa06d658c0520bd80e10910e90938464d599b458b3100b904b9371a36672aea","63959ac370486f4540356911537fe6f1f00752b39e808c68c79bd4941f5ebfdd","65898b7aa4d4d0c1b6a86a00127c64d5098207af330bd94d6c6d1772f1dac99e","4b9310761d049db02c1c21994ed2114ac71b28df52224518cf7b9241c8e042fb","3f0f50fe50424eaeb68ff303dda45f0725a267b542070163f1aed99d757779cd","602be747befe4390633c8d470bdad9f464ad0c41f8dedd1a1e528dc2922a593d","757066997ceb2aecb6fb0310759698023e754deeaea4d116c999472bf818c791","10af4b2f1d59591aa93d57c6152326850a8c28f126fffedd726432b152740609","4cf25ed0d118d7e4624825af780e9f69c688040c764b0c426af36ab44c2f92b4","bf75ca5b3ce462ab57a892613154b1e41fbf0add55bea4de14c398071494446e","f05e8fe6cc0dd666353105e181af55d910219765287fd1217d2232aa9f17c5d2","f704f00d5cf1056c4aab14efd50a26fb33cdf52c775c67c82759a588f3e7ff57","2447f4390bcee60c41b754b28e711ca13e8bd28b5bb32b1bfb0ad1ce3b32df88","ae2ac975eda75f6b0a2103f8b84b25fea22d6603fcc052ca51305c2cc7839a3a","f7863b0f771d00b4bd63ae91bc49266b58760170111fff924bf5aaa407051185","158c1df81da4ba785bb31c6512b1c013361a5654366a20557b30ba3f54053931","870654f1e76948231de54e5ec9e0c1f9b9385392454d2e614f6873010036f7dc","183c8bb9f0f399fe2383135c7c02e8447486200e5b7a6bac297fa920e0a8f01f","836a9758bd685bab5a312dfe65368e430a99ed9f26c6943617cd869fee83c22b","5b86de8dd75c48064cac9aa37641c7fef5eedcb63541c8ec8e798898a116d103","9bacb937a771858755bbdd192db5e5f6dc666829d2626e11676e4c0d8bf33a61","de76fe40240a2965fcb79a04c9e72a78cc6688633af79422e74f837f3f40de2c",{"version":"4971db15d3157663437979fdfce55ad46173a801308b249823558aaa0417598b","signature":"d3e1a62bc96f718c6441ca91ae7d28185c74d3730d0bfa9d113afc5225dbd1c2"},"afa9397f3aa80897cec3ddec1dd6f7c8741106ce96090f74df790a474b114ed6","8c08668019739abf45bfa24fb3559a4362161c438e71e3925f06bd6ea2792883","242e6ce3f14c79123c25c35660899ba483f3fdc14ac8fa4a8eee5d03231c6bc3","96adbcda030ffa1952a15192edd1b852084c9bfbbd2066e5c8d567987c466e90","1875bde1eafbc9d923cd1624ac1fd6da0af82347c2a9c7a847a660cc4fa01a33",{"version":"a7f06b12b98b7b9f81421ee524d826a7f1e6a5165efc7b06773d656aae2dd835","signature":"effbe6684df5343a270d3218b7019e167b2452e0e8c37fbc385785d0223cb14e"},{"version":"a968187dfe1768ab481fa7bc13d92d95eebbc63237784e4676288a8d73b62ebf","signature":"39423ab55f29831544a6224a19301cc7059edec6739c0b90f6826935a5dfb1e3"},"a543a3dc6a07db81e43c3a883194c2e0ef68318fcdf850c0daf6895d5d9d580d","e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7","b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44","affectsGlobalScope":true},{"version":"d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"target":1},"fileIdsList":[[196,198],[192,193],[192,193,194,195],[197],[199],[59],[95],[96,101,129],[97,108,109,116,126,137],[97,98,108,116],[99,138],[100,101,109,117],[101,126,134],[102,104,108,116],[95,103],[104,105],[108],[106,108],[95,108],[108,109,110,126,137],[108,109,110,123,126,129],[93,142],[104,108,111,116,126,137],[108,109,111,112,116,126,134,137],[111,113,126,134,137],[59,60,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[108,114],[115,137,142],[104,108,116,126],[117],[118],[95,119],[120,136,142],[121],[122],[108,123,124],[123,125,138,140],[96,108,126,127,128,129],[96,126,128],[126,127],[129],[130],[95,126],[108,132,133],[132,133],[101,116,126,134],[135],[116,136],[96,111,122,137],[101,138],[126,139],[115,140],[141],[96,101,108,110,119,126,137,140,142],[126,143],[148,170],[148,179],[148,173,179],[145,148,172,173,174,175,176,177,178],[145,148,172,173,179,180,181],[145,148,172,173,179,180],[145,148,160,171],[148,172,173,182],[164,165,169],[165],[164,165,166,167,168],[164,165],[164],[161,162,163],[161],[148],[147],[146],[148,152,153,154,155,156,157,158],[146,148],[148,151],[149],[146,148,149,150,159],[70,74,137],[70,126,137],[65],[67,70,134,137],[116,134],[145],[65,145],[67,70,116,137],[62,63,66,69,96,108,126,137],[62,68],[66,70,96,129,137,145],[96,145],[86,96,145],[64,65,145],[70],[64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,85,87,88,89,90,91,92],[70,77,78],[68,70,78,79],[69],[62,65,70],[70,74,78,79],[74],[68,70,73,137],[62,67,68,70,74,77],[96,126],[65,70,86,96,142,145],[49,52],[49],[49,55],[49,50,51,53,54,56,57,58,183,189],[49,57,118,182],[49,188],[184,185,186,187],[44,45],[44,46,47,48],[43],[43,44],[50,51,58,183,189]],"referencedMap":[[199,1],[194,2],[196,3],[195,2],[198,4],[200,5],[59,6],[60,6],[95,7],[96,8],[97,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,15],[104,16],[105,16],[107,17],[106,18],[108,19],[109,20],[110,21],[94,22],[111,23],[112,24],[113,25],[145,26],[114,27],[115,28],[116,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,36],[125,37],[126,38],[128,39],[127,40],[129,41],[130,42],[131,43],[132,44],[133,45],[134,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[171,56],[174,57],[177,57],[178,57],[176,58],[175,58],[179,59],[182,60],[181,61],[172,62],[180,63],[173,57],[170,64],[166,65],[169,66],[167,67],[165,68],[164,69],[162,70],[163,70],[151,71],[148,72],[147,73],[158,71],[157,71],[159,74],[156,75],[154,71],[155,71],[152,76],[153,71],[150,77],[160,78],[77,79],[84,80],[76,79],[91,81],[68,82],[67,83],[90,84],[85,85],[88,86],[70,87],[69,88],[65,89],[64,90],[87,91],[66,92],[71,93],[75,93],[93,94],[92,93],[79,95],[80,96],[82,97],[78,98],[81,99],[86,84],[73,100],[74,101],[83,102],[63,103],[89,104],[53,105],[52,106],[54,106],[56,107],[55,106],[57,106],[50,106],[190,108],[191,31],[183,109],[189,110],[51,106],[184,106],[188,111],[187,106],[186,106],[46,112],[49,113],[44,114],[48,115]],"exportedModulesMap":[[199,1],[194,2],[196,3],[195,2],[198,4],[200,5],[59,6],[60,6],[95,7],[96,8],[97,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,15],[104,16],[105,16],[107,17],[106,18],[108,19],[109,20],[110,21],[94,22],[111,23],[112,24],[113,25],[145,26],[114,27],[115,28],[116,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,36],[125,37],[126,38],[128,39],[127,40],[129,41],[130,42],[131,43],[132,44],[133,45],[134,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[171,56],[174,57],[177,57],[178,57],[176,58],[175,58],[179,59],[182,60],[181,61],[172,62],[180,63],[173,57],[170,64],[166,65],[169,66],[167,67],[165,68],[164,69],[162,70],[163,70],[151,71],[148,72],[147,73],[158,71],[157,71],[159,74],[156,75],[154,71],[155,71],[152,76],[153,71],[150,77],[160,78],[77,79],[84,80],[76,79],[91,81],[68,82],[67,83],[90,84],[85,85],[88,86],[70,87],[69,88],[65,89],[64,90],[87,91],[66,92],[71,93],[75,93],[93,94],[92,93],[79,95],[80,96],[82,97],[78,98],[81,99],[86,84],[73,100],[74,101],[83,102],[63,103],[89,104],[53,105],[52,106],[54,106],[56,107],[55,106],[57,106],[50,106],[190,116],[191,31],[183,106],[189,106],[51,106],[184,106],[188,111],[187,106],[186,106],[46,112],[49,113],[44,114],[48,115]],"semanticDiagnosticsPerFile":[45,199,192,194,196,195,193,198,197,200,59,60,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,94,144,111,112,113,145,114,115,116,117,118,119,120,121,122,123,124,125,126,128,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,61,171,174,177,178,176,175,179,182,181,172,180,173,170,168,166,169,167,165,164,162,163,161,151,146,148,147,158,157,159,156,154,155,152,153,150,149,160,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,77,84,76,91,68,67,90,85,88,70,69,65,64,87,66,71,72,75,62,93,92,79,80,82,78,81,86,73,74,83,63,89,53,52,54,56,55,57,50,190,191,183,189,58,51,184,188,187,185,186,47,46,43,49,44,48]},"version":"4.9.5"}
@@ -1 +1 @@
1
- {"version":3,"file":"error-page-mapping.d.ts","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAE5F,cAAM,oBAAqB,YAAW,aAAa;IAC3C,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAsBjD;AAED,eAAO,MAAM,oBAAoB,sBAA6B,CAAA"}
1
+ {"version":3,"file":"error-page-mapping.d.ts","sourceRoot":"","sources":["../../src/error-page-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAE5F,cAAM,oBAAqB,YAAW,aAAa;IAC3C,SAAS,CAAC,SAAS,EAAE,sBAAsB;IAI3C,QAAQ,CAAC,SAAS,EAAE,sBAAsB;CAuBjD;AAED,eAAO,MAAM,oBAAoB,sBAA6B,CAAA"}
@@ -56,7 +56,8 @@ var HTMLErrorPageMapping = /** @class */ (function () {
56
56
  if (!fallback) {
57
57
  return [2 /*return*/, structure];
58
58
  }
59
- folder = files.get((_a = fallback.pageOptions) === null || _a === void 0 ? void 0 : _a.componentName) || files.get((_b = fallback.pageOptions) === null || _b === void 0 ? void 0 : _b.fileName);
59
+ folder = files.get("page-".concat((_a = fallback.pageOptions) === null || _a === void 0 ? void 0 : _a.componentName)) ||
60
+ files.get("page-".concat((_b = fallback.pageOptions) === null || _b === void 0 ? void 0 : _b.fileName));
60
61
  if (!folder) {
61
62
  return [2 /*return*/, structure];
62
63
  }