@d-zero/puppeteer-scroll 2.0.0 → 3.0.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.
@@ -6,7 +6,6 @@ export type Options = {
6
6
  };
7
7
  /**
8
8
  * Scrolls the page vertically until the end or a maximum height is reached.
9
- *
10
9
  * @param page - The Puppeteer page object.
11
10
  * @param options - Optional parameters for scrolling.
12
11
  * @param options.distance - The distance to scroll on each iteration (default: 100).
@@ -1,7 +1,6 @@
1
1
  import { delay } from '@d-zero/shared/delay';
2
2
  /**
3
3
  * Scrolls the page vertically until the end or a maximum height is reached.
4
- *
5
4
  * @param page - The Puppeteer page object.
6
5
  * @param options - Optional parameters for scrolling.
7
6
  * @param options.distance - The distance to scroll on each iteration (default: 100).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/puppeteer-scroll",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "Scroll function for puppeteer",
5
5
  "author": "D-ZERO",
6
6
  "license": "MIT",
@@ -24,10 +24,10 @@
24
24
  "clean": "tsc --build --clean"
25
25
  },
26
26
  "dependencies": {
27
- "@d-zero/shared": "0.6.0"
27
+ "@d-zero/shared": "0.7.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@d-zero/puppeteer-page": "0.2.0"
30
+ "@d-zero/puppeteer-page": "0.3.0"
31
31
  },
32
- "gitHead": "1eb1c03400580040119121e11ffb33acd876fe1b"
32
+ "gitHead": "e4fd17857e31022d121527b00fd7f009dbdb2142"
33
33
  }