@elliemae/pui-cli 8.49.0 → 8.51.0

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.
package/app.tsconfig.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "lib": ["dom", "dom.iterable", "esnext"],
4
- "module": "esnext",
5
- "target": "es2020",
3
+ "lib": ["dom", "dom.iterable", "ES2022"],
4
+ "module": "ESNext",
5
+ "target": "ES2022",
6
6
  "allowJs": true,
7
7
  "allowSyntheticDefaultImports": true,
8
8
  "esModuleInterop": true,
@@ -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,24 @@
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
+ });
23
+ module.exports = __toCommonJS(frame_exports);
24
+ var frame_default = "./frame.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,4 @@
1
+ var frame_default = "./frame.html";
2
+ export {
3
+ frame_default as default
4
+ };
@@ -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,2 @@
1
+ declare const _default: "./frame.html";
2
+ export default _default;