@percy/core 1.31.14-beta.2 → 1.31.14-beta.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.
- package/dist/closed-shadow.js +194 -0
- package/dist/config.js +11 -0
- package/dist/page.js +81 -7
- package/package.json +9 -9
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
// Closed-shadow capture helper. CLI-side only.
|
|
2
|
+
//
|
|
3
|
+
// External Percy SDK plugins (puppeteer-percy, playwright-percy,
|
|
4
|
+
// cypress-percy, selenium-chrome-percy) will get their own copy when
|
|
5
|
+
// SDK-side closed-shadow capture is added — that work is intentionally
|
|
6
|
+
// scoped to a separate change so this PR stays focused on the CLI path.
|
|
7
|
+
//
|
|
8
|
+
// Discovers closed shadow roots in the live page and exposes them to
|
|
9
|
+
// PercyDOM.serialize() via per-document `__percyClosedShadowRoots`
|
|
10
|
+
// WeakMaps that clone-dom.js reads through shadow-utils.getRuntime().
|
|
11
|
+
//
|
|
12
|
+
// Closed shadow roots are inaccessible from JavaScript
|
|
13
|
+
// (`element.shadowRoot === null`), but Chrome DevTools Protocol's DOM domain
|
|
14
|
+
// can pierce them. We get the full DOM tree with `pierce: true` (which also
|
|
15
|
+
// traverses iframe boundaries — closed shadow hosts inside iframes are
|
|
16
|
+
// captured by the same walk), collect every closed-shadow host/root pair,
|
|
17
|
+
// resolve both to JS object references via `DOM.resolveNode`, then call
|
|
18
|
+
// `Runtime.callFunctionOn` to write the mapping. The function body installs
|
|
19
|
+
// the WeakMap on the host's *own* `ownerDocument.defaultView` — so a host
|
|
20
|
+
// inside an iframe writes into the iframe's realm, where shadow-utils will
|
|
21
|
+
// later read it.
|
|
22
|
+
//
|
|
23
|
+
// Works for any caller that has a CDP session-like object exposing
|
|
24
|
+
// `send(method, params) => Promise`:
|
|
25
|
+
// - Puppeteer: `await page.target().createCDPSession()`
|
|
26
|
+
// - Playwright: `await context.newCDPSession(page)`
|
|
27
|
+
// - Selenium: `await driver.getDevTools()` (Chromium only)
|
|
28
|
+
// - Percy CLI: Percy's own session.send wrapper
|
|
29
|
+
//
|
|
30
|
+
// Side effect: temporarily enables and then disables the CDP `DOM` domain
|
|
31
|
+
// on the supplied session. Don't run concurrently with another `DOM`-domain
|
|
32
|
+
// consumer on the same session — the helper installs an in-flight guard
|
|
33
|
+
// against itself, but can't see other consumers.
|
|
34
|
+
//
|
|
35
|
+
// Limitation: captures the closed shadow roots present at the time of the
|
|
36
|
+
// call. Custom elements that lazy-attach a closed shadow root after this
|
|
37
|
+
// returns (e.g. inside `requestIdleCallback` or `IntersectionObserver`)
|
|
38
|
+
// won't be captured. The caller is responsible for waiting until the page
|
|
39
|
+
// is settled before invoking.
|
|
40
|
+
//
|
|
41
|
+
// Returns the number of closed shadow roots successfully exposed (0 if none,
|
|
42
|
+
// -1 on top-level error). Per-pair errors are swallowed and surfaced via the
|
|
43
|
+
// optional `log` callback — closed-shadow capture is best-effort and must
|
|
44
|
+
// never break a snapshot run.
|
|
45
|
+
|
|
46
|
+
const DEFAULT_LOG = () => {};
|
|
47
|
+
|
|
48
|
+
// Mirrors HARD_MAX_IFRAME_DEPTH from serialize-frames so every recursive
|
|
49
|
+
// walk in the capture pipeline shares the same ceiling. Counted only across
|
|
50
|
+
// shadow / iframe boundary crossings — not plain children — otherwise a
|
|
51
|
+
// normal deep DOM (html → body → div → … → custom-element) would burn
|
|
52
|
+
// through the budget before reaching any shadow host.
|
|
53
|
+
const MAX_SHADOW_DEPTH = 10;
|
|
54
|
+
|
|
55
|
+
// Bound concurrent CDP messages so we don't flood a session with hundreds
|
|
56
|
+
// of in-flight resolveNode/callFunctionOn calls when a page has many
|
|
57
|
+
// closed shadow hosts. Phase 1 (resolve) issues 2 calls per pair, so peak
|
|
58
|
+
// in-flight there is 2 * CDP_BATCH_SIZE; phase 2 (stamp) is 1 per pair so
|
|
59
|
+
// peak is exactly CDP_BATCH_SIZE. 8 chosen as a conservative default that
|
|
60
|
+
// keeps both phases well under typical CDP message-queue depths.
|
|
61
|
+
const CDP_BATCH_SIZE = 8;
|
|
62
|
+
|
|
63
|
+
// The function body that installs the WeakMap and writes the host→shadow
|
|
64
|
+
// pair. Runs inside Runtime.callFunctionOn with the host as `this`, so
|
|
65
|
+
// `this.ownerDocument.defaultView` is the host's *own* realm — the iframe's
|
|
66
|
+
// window when the host is inside an iframe.
|
|
67
|
+
//
|
|
68
|
+
// IMPORTANT: this is a string (required by Runtime.callFunctionOn) AND it
|
|
69
|
+
// is intentionally ES5 — it executes in the page's realm, which may be any
|
|
70
|
+
// browser/JS target the page itself targets. Don't "modernize" with arrow
|
|
71
|
+
// functions, let/const, or optional chaining.
|
|
72
|
+
const STAMP_FUNCTION = 'function(shadowRoot) {' + ' var w = this.ownerDocument && this.ownerDocument.defaultView;' + ' if (!w) return;' + ' if (!w.__percyClosedShadowRoots) w.__percyClosedShadowRoots = new WeakMap();' + ' w.__percyClosedShadowRoots.set(this, shadowRoot);' + '}';
|
|
73
|
+
|
|
74
|
+
// Marker for the in-flight guard — prevents concurrent invocations on the
|
|
75
|
+
// same session from racing each other's DOM.enable / DOM.disable lifecycle.
|
|
76
|
+
// Module-local Symbol (not Symbol.for) so it can't collide with any other
|
|
77
|
+
// global registry entry.
|
|
78
|
+
const IN_FLIGHT = Symbol('percy.closedShadow.inFlight');
|
|
79
|
+
export async function exposeClosedShadowRoots(cdp, log = DEFAULT_LOG) {
|
|
80
|
+
if (!cdp || typeof cdp.send !== 'function') return -1;
|
|
81
|
+
if (cdp[IN_FLIGHT]) {
|
|
82
|
+
log('Skipping concurrent closed-shadow CDP discovery on the same session');
|
|
83
|
+
return -1;
|
|
84
|
+
}
|
|
85
|
+
cdp[IN_FLIGHT] = true;
|
|
86
|
+
let domEnabled = false;
|
|
87
|
+
try {
|
|
88
|
+
await cdp.send('DOM.enable');
|
|
89
|
+
domEnabled = true;
|
|
90
|
+
const {
|
|
91
|
+
root
|
|
92
|
+
} = await cdp.send('DOM.getDocument', {
|
|
93
|
+
depth: -1,
|
|
94
|
+
pierce: true
|
|
95
|
+
});
|
|
96
|
+
const closedPairs = [];
|
|
97
|
+
walkCDPNodes(root, closedPairs);
|
|
98
|
+
if (closedPairs.length === 0) {
|
|
99
|
+
return 0;
|
|
100
|
+
}
|
|
101
|
+
log(`Found ${closedPairs.length} closed shadow root(s), exposing via CDP`);
|
|
102
|
+
|
|
103
|
+
// Phase 1: resolve every backendNodeId → objectId in parallel batches.
|
|
104
|
+
const resolved = [];
|
|
105
|
+
for (let i = 0; i < closedPairs.length; i += CDP_BATCH_SIZE) {
|
|
106
|
+
const slice = closedPairs.slice(i, i + CDP_BATCH_SIZE);
|
|
107
|
+
const out = await Promise.all(slice.map(async pair => {
|
|
108
|
+
try {
|
|
109
|
+
const [hostRes, shadowRes] = await Promise.all([cdp.send('DOM.resolveNode', {
|
|
110
|
+
backendNodeId: pair.hostBackendNodeId
|
|
111
|
+
}), cdp.send('DOM.resolveNode', {
|
|
112
|
+
backendNodeId: pair.shadowBackendNodeId
|
|
113
|
+
})]);
|
|
114
|
+
return {
|
|
115
|
+
hostObj: hostRes.object,
|
|
116
|
+
shadowObj: shadowRes.object,
|
|
117
|
+
pair
|
|
118
|
+
};
|
|
119
|
+
} catch (err) {
|
|
120
|
+
const msg = err && err.message ? err.message : err;
|
|
121
|
+
log(`Skipping a closed shadow pair: ${msg} (host=${pair.hostBackendNodeId}, shadow=${pair.shadowBackendNodeId})`);
|
|
122
|
+
return null;
|
|
123
|
+
}
|
|
124
|
+
}));
|
|
125
|
+
for (const entry of out) if (entry) resolved.push(entry);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Phase 2: stamp the WeakMap (per-realm), also batched. Track real
|
|
129
|
+
// successes — earlier shapes returned closedPairs.length and overstated
|
|
130
|
+
// success when stamps failed.
|
|
131
|
+
let stamped = 0;
|
|
132
|
+
for (let i = 0; i < resolved.length; i += CDP_BATCH_SIZE) {
|
|
133
|
+
const slice = resolved.slice(i, i + CDP_BATCH_SIZE);
|
|
134
|
+
const results = await Promise.all(slice.map(({
|
|
135
|
+
hostObj,
|
|
136
|
+
shadowObj,
|
|
137
|
+
pair
|
|
138
|
+
}) => cdp.send('Runtime.callFunctionOn', {
|
|
139
|
+
functionDeclaration: STAMP_FUNCTION,
|
|
140
|
+
objectId: hostObj.objectId,
|
|
141
|
+
arguments: [{
|
|
142
|
+
objectId: shadowObj.objectId
|
|
143
|
+
}]
|
|
144
|
+
}).then(() => true).catch(err => {
|
|
145
|
+
const msg = err && err.message ? err.message : err;
|
|
146
|
+
log(`Skipping a closed shadow pair: ${msg} (host=${pair.hostBackendNodeId}, shadow=${pair.shadowBackendNodeId})`);
|
|
147
|
+
return false;
|
|
148
|
+
})));
|
|
149
|
+
for (const ok of results) if (ok) stamped++;
|
|
150
|
+
}
|
|
151
|
+
return stamped;
|
|
152
|
+
} catch (err) {
|
|
153
|
+
log(`Could not expose closed shadow roots via CDP: ${err && err.message ? err.message : err}`);
|
|
154
|
+
return -1;
|
|
155
|
+
} finally {
|
|
156
|
+
if (domEnabled) {
|
|
157
|
+
await cdp.send('DOM.disable').catch(disableErr => {
|
|
158
|
+
log(`DOM.disable failed during closed-shadow cleanup: ${disableErr && disableErr.message ? disableErr.message : disableErr}`);
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
delete cdp[IN_FLIGHT];
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Walk a DOM.getDocument tree (with pierce: true) collecting every
|
|
166
|
+
// closed-shadow host/root pair we encounter. `pierce: true` traverses both
|
|
167
|
+
// shadow boundaries and iframe `contentDocument` boundaries, so a single
|
|
168
|
+
// walk reaches closed shadow hosts inside nested iframes. Recursion is
|
|
169
|
+
// bounded at MAX_SHADOW_DEPTH levels — counted only across shadow/iframe
|
|
170
|
+
// boundary crossings, not plain children — so a deep ordinary DOM doesn't
|
|
171
|
+
// exhaust the budget before reaching its shadow hosts. Exported for tests.
|
|
172
|
+
export function walkCDPNodes(node, pairs, depth = 0) {
|
|
173
|
+
if (!node || depth >= MAX_SHADOW_DEPTH) return;
|
|
174
|
+
if (node.shadowRoots) {
|
|
175
|
+
for (const sr of node.shadowRoots) {
|
|
176
|
+
if (sr.shadowRootType === 'closed') {
|
|
177
|
+
pairs.push({
|
|
178
|
+
hostBackendNodeId: node.backendNodeId,
|
|
179
|
+
shadowBackendNodeId: sr.backendNodeId
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
// crossing a shadow boundary — increment depth
|
|
183
|
+
walkCDPNodes(sr, pairs, depth + 1);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
if (node.children) {
|
|
187
|
+
// plain children — same realm, same depth
|
|
188
|
+
for (const child of node.children) walkCDPNodes(child, pairs, depth);
|
|
189
|
+
}
|
|
190
|
+
// pierce: true surfaces iframe content documents on the iframe node;
|
|
191
|
+
// crossing into the iframe's realm — increment depth.
|
|
192
|
+
if (node.contentDocument) walkCDPNodes(node.contentDocument, pairs, depth + 1);
|
|
193
|
+
}
|
|
194
|
+
export default exposeClosedShadowRoots;
|
package/dist/config.js
CHANGED
|
@@ -332,6 +332,14 @@ export const configSchema = {
|
|
|
332
332
|
type: 'boolean',
|
|
333
333
|
default: false
|
|
334
334
|
},
|
|
335
|
+
ignoreIframeSelectors: {
|
|
336
|
+
type: 'array',
|
|
337
|
+
default: [],
|
|
338
|
+
items: {
|
|
339
|
+
type: 'string',
|
|
340
|
+
minLength: 1
|
|
341
|
+
}
|
|
342
|
+
},
|
|
335
343
|
pseudoClassEnabledElements: {
|
|
336
344
|
type: 'object',
|
|
337
345
|
additionalProperties: false,
|
|
@@ -640,6 +648,9 @@ export const snapshotSchema = {
|
|
|
640
648
|
ignoreStyleSheetSerializationErrors: {
|
|
641
649
|
$ref: '/config/snapshot#/properties/ignoreStyleSheetSerializationErrors'
|
|
642
650
|
},
|
|
651
|
+
ignoreIframeSelectors: {
|
|
652
|
+
$ref: '/config/snapshot#/properties/ignoreIframeSelectors'
|
|
653
|
+
},
|
|
643
654
|
pseudoClassEnabledElements: {
|
|
644
655
|
$ref: '/config/snapshot#/properties/pseudoClassEnabledElements'
|
|
645
656
|
},
|
package/dist/page.js
CHANGED
|
@@ -1,8 +1,55 @@
|
|
|
1
1
|
import fs from 'fs';
|
|
2
2
|
import logger from '@percy/logger';
|
|
3
3
|
import Network from './network.js';
|
|
4
|
+
import { exposeClosedShadowRoots } from './closed-shadow.js';
|
|
4
5
|
import { PERCY_DOM } from './api.js';
|
|
5
6
|
import { hostname, waitFor, waitForTimeout as sleep, serializeFunction } from './utils.js';
|
|
7
|
+
|
|
8
|
+
// Internal ceiling on the customElements wait. Set tight (500ms) so a
|
|
9
|
+
// page with a never-registering custom element — third-party widget whose
|
|
10
|
+
// loader is blocked, typo'd tag name, etc. — doesn't add a full 1500ms to
|
|
11
|
+
// every snapshot. Real cascades of legitimate lazy-defined elements
|
|
12
|
+
// complete well within this budget; the loop also exits early as soon as
|
|
13
|
+
// `:not(:defined)` clears.
|
|
14
|
+
export const DEFAULT_WAIT_FOR_CUSTOM_ELEMENTS_TIMEOUT = 500;
|
|
15
|
+
|
|
16
|
+
// Body of the customElements wait. Runs in the browser via
|
|
17
|
+
// Runtime.callFunctionOn. Re-polls each tick so lazy-defined element
|
|
18
|
+
// cascades are awaited up to the deadline.
|
|
19
|
+
//
|
|
20
|
+
// IMPORTANT: this body is intentionally ES5 — it is evaluated in the
|
|
21
|
+
// page's realm and must work in any browser the page targets. Don't
|
|
22
|
+
// "modernize" with arrow functions, let/const, or optional chaining.
|
|
23
|
+
export const WAIT_FOR_CUSTOM_ELEMENTS_BODY = `
|
|
24
|
+
var deadline = Date.now() + (arguments[0] || 500);
|
|
25
|
+
return new Promise(function(resolve) {
|
|
26
|
+
function tick() {
|
|
27
|
+
var undef = document.querySelectorAll(":not(:defined)");
|
|
28
|
+
if (!undef.length) return resolve();
|
|
29
|
+
if (Date.now() >= deadline) return resolve();
|
|
30
|
+
var names = {};
|
|
31
|
+
for (var i = 0; i < undef.length; i++) names[undef[i].localName] = true;
|
|
32
|
+
var promises = Object.keys(names).map(function(n) {
|
|
33
|
+
return window.customElements.whenDefined(n).catch(function(){});
|
|
34
|
+
});
|
|
35
|
+
Promise.race([
|
|
36
|
+
Promise.all(promises),
|
|
37
|
+
new Promise(function(r) { setTimeout(r, 100); })
|
|
38
|
+
]).then(tick);
|
|
39
|
+
}
|
|
40
|
+
tick();
|
|
41
|
+
});
|
|
42
|
+
`;
|
|
43
|
+
|
|
44
|
+
/* istanbul ignore next: runs in the page realm via Runtime.callFunctionOn,
|
|
45
|
+
not in the test process — there is no way to instrument it from here */
|
|
46
|
+
function serializeDomCapture(_, options) {
|
|
47
|
+
/* eslint-disable-next-line no-undef */
|
|
48
|
+
return {
|
|
49
|
+
domSnapshot: PercyDOM.serialize(options),
|
|
50
|
+
url: document.URL
|
|
51
|
+
};
|
|
52
|
+
}
|
|
6
53
|
export class Page {
|
|
7
54
|
static TIMEOUT = undefined;
|
|
8
55
|
log = logger('core:page');
|
|
@@ -195,6 +242,7 @@ export class Page {
|
|
|
195
242
|
reshuffleInvalidTags,
|
|
196
243
|
ignoreCanvasSerializationErrors,
|
|
197
244
|
ignoreStyleSheetSerializationErrors,
|
|
245
|
+
ignoreIframeSelectors,
|
|
198
246
|
pseudoClassEnabledElements
|
|
199
247
|
} = snapshot;
|
|
200
248
|
this.log.debug(`Taking snapshot: ${name}${width ? ` @${width}px` : ''}`, this.meta);
|
|
@@ -219,17 +267,33 @@ export class Page {
|
|
|
219
267
|
|
|
220
268
|
// wait for any final network activity before capturing the dom snapshot
|
|
221
269
|
await this.network.idle();
|
|
270
|
+
|
|
271
|
+
// Pre-snapshot best-effort steps: waiting for lazy custom elements and
|
|
272
|
+
// discovering closed shadow roots via CDP. Both target a fully-loaded
|
|
273
|
+
// page; if the session has already terminated, skip them so the proper
|
|
274
|
+
// crash/close error surfaces from the downstream insertPercyDom +
|
|
275
|
+
// serialize evals (which gate on the same session).
|
|
276
|
+
//
|
|
277
|
+
// Ordering is load-bearing: closed-shadow capture must run AFTER the
|
|
278
|
+
// customElements wait so we catch shadows attached inside upgrade /
|
|
279
|
+
// connectedCallback hooks. Don't reorder or parallelise these.
|
|
280
|
+
if (!this.session.closedReason) {
|
|
281
|
+
// Best-effort: a flaky page should not break the snapshot.
|
|
282
|
+
try {
|
|
283
|
+
await this.eval(WAIT_FOR_CUSTOM_ELEMENTS_BODY, DEFAULT_WAIT_FOR_CUSTOM_ELEMENTS_TIMEOUT);
|
|
284
|
+
} catch (err) {
|
|
285
|
+
/* istanbul ignore next: best-effort log; defensive against non-Error throws */
|
|
286
|
+
this.log.debug(`Custom elements wait failed: ${err.message ?? err}`, this.meta);
|
|
287
|
+
}
|
|
288
|
+
if (!disableShadowDOM) {
|
|
289
|
+
await exposeClosedShadowRoots(this.session, this._logShadowDebug.bind(this));
|
|
290
|
+
}
|
|
291
|
+
}
|
|
222
292
|
await this.insertPercyDom();
|
|
223
293
|
|
|
224
294
|
// serialize and capture a DOM snapshot
|
|
225
295
|
this.log.debug('Serialize DOM', this.meta);
|
|
226
|
-
|
|
227
|
-
/* istanbul ignore next: no instrumenting injected code */
|
|
228
|
-
let capture = await this.eval((_, options) => ({
|
|
229
|
-
/* eslint-disable-next-line no-undef */
|
|
230
|
-
domSnapshot: PercyDOM.serialize(options),
|
|
231
|
-
url: document.URL
|
|
232
|
-
}), {
|
|
296
|
+
let capture = await this.eval(serializeDomCapture, {
|
|
233
297
|
enableJavaScript,
|
|
234
298
|
disableShadowDOM,
|
|
235
299
|
forceShadowAsLightDOM,
|
|
@@ -237,6 +301,7 @@ export class Page {
|
|
|
237
301
|
reshuffleInvalidTags,
|
|
238
302
|
ignoreCanvasSerializationErrors,
|
|
239
303
|
ignoreStyleSheetSerializationErrors,
|
|
304
|
+
ignoreIframeSelectors,
|
|
240
305
|
pseudoClassEnabledElements
|
|
241
306
|
});
|
|
242
307
|
return {
|
|
@@ -245,6 +310,15 @@ export class Page {
|
|
|
245
310
|
};
|
|
246
311
|
}
|
|
247
312
|
|
|
313
|
+
// Logger for the closed-shadow CDP helper. Defined on the prototype (not
|
|
314
|
+
// a class-field arrow) so it's reachable from a unit test that constructs
|
|
315
|
+
// a Page via Object.create without invoking the constructor — gives us a
|
|
316
|
+
// direct way to cover the callback without simulating a closed shadow
|
|
317
|
+
// discovery flow at the integration level.
|
|
318
|
+
_logShadowDebug(msg) {
|
|
319
|
+
this.log.debug(msg, this.meta);
|
|
320
|
+
}
|
|
321
|
+
|
|
248
322
|
// Initialize newly attached pages and iframes with page options
|
|
249
323
|
_handleAttachedToTarget = event => {
|
|
250
324
|
let session = !event ? this.session : this.session.children.get(event.sessionId);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/core",
|
|
3
|
-
"version": "1.31.14-beta.
|
|
3
|
+
"version": "1.31.14-beta.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"test:types": "tsd"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@percy/client": "1.31.14-beta.
|
|
48
|
-
"@percy/config": "1.31.14-beta.
|
|
49
|
-
"@percy/dom": "1.31.14-beta.
|
|
50
|
-
"@percy/logger": "1.31.14-beta.
|
|
51
|
-
"@percy/monitoring": "1.31.14-beta.
|
|
52
|
-
"@percy/webdriver-utils": "1.31.14-beta.
|
|
47
|
+
"@percy/client": "1.31.14-beta.3",
|
|
48
|
+
"@percy/config": "1.31.14-beta.3",
|
|
49
|
+
"@percy/dom": "1.31.14-beta.3",
|
|
50
|
+
"@percy/logger": "1.31.14-beta.3",
|
|
51
|
+
"@percy/monitoring": "1.31.14-beta.3",
|
|
52
|
+
"@percy/webdriver-utils": "1.31.14-beta.3",
|
|
53
53
|
"content-disposition": "^0.5.4",
|
|
54
54
|
"cross-spawn": "^7.0.3",
|
|
55
55
|
"extract-zip": "^2.0.1",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"yaml": "^2.4.1"
|
|
64
64
|
},
|
|
65
65
|
"optionalDependencies": {
|
|
66
|
-
"@percy/cli-doctor": "1.31.14-beta.
|
|
66
|
+
"@percy/cli-doctor": "1.31.14-beta.3"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "a17d4a1453c6bef282fd3da38082b670e125a5be"
|
|
69
69
|
}
|