@shoper/cli 0.8.1-5 → 0.8.1-7

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.
@@ -43,6 +43,7 @@ export class Browser {
43
43
  const id = tabId ?? `tab-${uuid()}`;
44
44
  this.#onInfo?.(`Opening new tab ${id}: ${url}`);
45
45
  const page = await this.#browser.newPage();
46
+ await page.setCacheEnabled(false);
46
47
  await page.goto(url, { waitUntil: 'networkidle2' });
47
48
  this.#tabs.set(id, { page, url });
48
49
  this.#onInfo?.(`Tab ${id} opened successfully`);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@shoper/cli",
3
3
  "packageManager": "yarn@3.2.0",
4
4
  "sideEffects": false,
5
- "version": "0.8.1-5",
5
+ "version": "0.8.1-7",
6
6
  "description": "CLI tool for Shoper",
7
7
  "author": "Joanna Firek",
8
8
  "license": "MIT",