@elliemae/pui-cli 8.50.0 → 8.51.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,6 +65,7 @@ const jestConfig = {
65
65
  getMockFilePath('image.js'),
66
66
  '.*\\.svg(?:\\?[a-zA-Z]+)?$': getMockFilePath('svg.js'),
67
67
  '.*iframe\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('iframe.js'),
68
+ '.*frame\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('frame.js'),
68
69
  '.*\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('html.js'),
69
70
  '@elliemae/pui-user-monitoring': getMockFilePath('pui-user-monitoring.js'),
70
71
  '@elliemae/pui-app-loader': getMockFilePath('pui-app-loader.js'),
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var frame_exports = {};
20
+ __export(frame_exports, {
21
+ default: () => frame_default,
22
+ filename: () => filename
23
+ });
24
+ module.exports = __toCommonJS(frame_exports);
25
+ const filename = "./frame.html";
26
+ var frame_default = "./frame.html";
@@ -18,7 +18,9 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
  var iframe_exports = {};
20
20
  __export(iframe_exports, {
21
- default: () => iframe_default
21
+ default: () => iframe_default,
22
+ filename: () => filename
22
23
  });
23
24
  module.exports = __toCommonJS(iframe_exports);
25
+ const filename = "./iframe.html";
24
26
  var iframe_default = "./iframe.html";
@@ -254,7 +254,7 @@ const baseConfig = (options) => ({
254
254
  type: "asset"
255
255
  },
256
256
  {
257
- test: /iframe.html$/i,
257
+ test: /i?frame.html$/i,
258
258
  resourceQuery: /resource/,
259
259
  type: "asset/resource",
260
260
  generator: {
@@ -171,7 +171,7 @@ const baseConfig = (options) => ({
171
171
  type: "asset"
172
172
  },
173
173
  // {
174
- // test: /(?<!\/iframe)\.html$/,
174
+ // test: /(?<!\/i?frame)\.html$/,
175
175
  // exclude: excludeNodeModulesExcept(['@elliemae/*']),
176
176
  // use: 'html-loader',
177
177
  // },
@@ -65,6 +65,7 @@ const jestConfig = {
65
65
  getMockFilePath('image.js'),
66
66
  '.*\\.svg(?:\\?[a-zA-Z]+)?$': getMockFilePath('svg.js'),
67
67
  '.*iframe\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('iframe.js'),
68
+ '.*frame\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('frame.js'),
68
69
  '.*\\.html(?:\\?[a-zA-Z]+)?$': getMockFilePath('html.js'),
69
70
  '@elliemae/pui-user-monitoring': getMockFilePath('pui-user-monitoring.js'),
70
71
  '@elliemae/pui-app-loader': getMockFilePath('pui-app-loader.js'),
@@ -0,0 +1,6 @@
1
+ const filename = "./frame.html";
2
+ var frame_default = "./frame.html";
3
+ export {
4
+ frame_default as default,
5
+ filename
6
+ };
@@ -1,4 +1,6 @@
1
+ const filename = "./iframe.html";
1
2
  var iframe_default = "./iframe.html";
2
3
  export {
3
- iframe_default as default
4
+ iframe_default as default,
5
+ filename
4
6
  };
@@ -227,7 +227,7 @@ const baseConfig = (options) => ({
227
227
  type: "asset"
228
228
  },
229
229
  {
230
- test: /iframe.html$/i,
230
+ test: /i?frame.html$/i,
231
231
  resourceQuery: /resource/,
232
232
  type: "asset/resource",
233
233
  generator: {
@@ -144,7 +144,7 @@ const baseConfig = (options) => ({
144
144
  type: "asset"
145
145
  },
146
146
  // {
147
- // test: /(?<!\/iframe)\.html$/,
147
+ // test: /(?<!\/i?frame)\.html$/,
148
148
  // exclude: excludeNodeModulesExcept(['@elliemae/*']),
149
149
  // use: 'html-loader',
150
150
  // },
@@ -12,6 +12,7 @@ export namespace jestConfig {
12
12
  '.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
13
13
  '.*\\.svg(?:\\?[a-zA-Z]+)?$': string;
14
14
  '.*iframe\\.html(?:\\?[a-zA-Z]+)?$': string;
15
+ '.*frame\\.html(?:\\?[a-zA-Z]+)?$': string;
15
16
  '.*\\.html(?:\\?[a-zA-Z]+)?$': string;
16
17
  '@elliemae/pui-user-monitoring': string;
17
18
  '@elliemae/pui-app-loader': string;
@@ -16,6 +16,7 @@ export const jestNodeConfig: {
16
16
  '.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
17
17
  '.*\\.svg(?:\\?[a-zA-Z]+)?$': string;
18
18
  '.*iframe\\.html(?:\\?[a-zA-Z]+)?$': string;
19
+ '.*frame\\.html(?:\\?[a-zA-Z]+)?$': string;
19
20
  '.*\\.html(?:\\?[a-zA-Z]+)?$': string;
20
21
  '@elliemae/pui-user-monitoring': string;
21
22
  '@elliemae/pui-app-loader': string;
@@ -0,0 +1,3 @@
1
+ export const filename: "./frame.html";
2
+ declare const _default: "./frame.html";
3
+ export default _default;
@@ -1,2 +1,3 @@
1
+ export const filename: "./iframe.html";
1
2
  declare const _default: "./iframe.html";
2
3
  export default _default;