@elliemae/pui-cli 8.51.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.
- package/dist/cjs/testing/mocks/frame.js +3 -1
- package/dist/cjs/testing/mocks/iframe.js +3 -1
- package/dist/esm/testing/mocks/frame.js +3 -1
- package/dist/esm/testing/mocks/iframe.js +3 -1
- package/dist/types/lib/testing/mocks/frame.d.ts +1 -0
- package/dist/types/lib/testing/mocks/iframe.d.ts +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,9 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
var frame_exports = {};
|
|
20
20
|
__export(frame_exports, {
|
|
21
|
-
default: () => frame_default
|
|
21
|
+
default: () => frame_default,
|
|
22
|
+
filename: () => filename
|
|
22
23
|
});
|
|
23
24
|
module.exports = __toCommonJS(frame_exports);
|
|
25
|
+
const filename = "./frame.html";
|
|
24
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";
|