@percy/dom 1.31.5 → 1.31.6-beta.5
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/bundle.js +5 -0
- package/package.json +3 -3
package/dist/bundle.js
CHANGED
|
@@ -740,6 +740,11 @@
|
|
|
740
740
|
nextn = nextn.nextSibling;
|
|
741
741
|
}
|
|
742
742
|
};
|
|
743
|
+
if (node.nodeName === 'BASE') {
|
|
744
|
+
let clone = node.cloneNode(false);
|
|
745
|
+
parent.appendChild(clone);
|
|
746
|
+
return;
|
|
747
|
+
}
|
|
743
748
|
|
|
744
749
|
// mark the node before cloning
|
|
745
750
|
markElement(node, disableShadowDOM, forceShadowAsLightDOM);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/dom",
|
|
3
|
-
"version": "1.31.5",
|
|
3
|
+
"version": "1.31.6-beta.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public",
|
|
12
|
-
"tag": "
|
|
12
|
+
"tag": "beta"
|
|
13
13
|
},
|
|
14
14
|
"main": "dist/bundle.js",
|
|
15
15
|
"browser": "dist/bundle.js",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"interactor.js": "^2.0.0-beta.10"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "fbcc28ce81ae902a32a5856c46efa0de6ae19300"
|
|
39
39
|
}
|