react-lib-tools 0.0.42 → 0.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-lib-tools",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "type": "module",
5
5
  "author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
6
6
  "contributors": [
@@ -20,6 +20,7 @@ export async function crawlPage({
20
20
  const browser = await puppeteer.launch(
21
21
  chromeExecutablePath
22
22
  ? {
23
+ args: ["--no-sandbox", "--disable-setuid-sandbox"],
23
24
  executablePath: chromeExecutablePath,
24
25
  headless: true
25
26
  }
@@ -112,6 +113,7 @@ export async function crawlPage({
112
113
  };
113
114
 
114
115
  return crawlPage({
116
+ chromeExecutablePath,
115
117
  filterSelector,
116
118
  host,
117
119
  path: current,