Skip to content

Commit 7f1fd21

Browse files
committed
Prettier
1 parent af64584 commit 7f1fd21

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# [1.5.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.4.0...v1.5.0) (2024-07-05)
22

3-
43
### Features
54

6-
* git clone depth limit in docker ([87767db](https://github.com/BuilderIO/gpt-crawler/commit/87767dbda99b3259d44ec2c02dceb3a59bb2ca3c))
5+
- git clone depth limit in docker ([87767db](https://github.com/BuilderIO/gpt-crawler/commit/87767dbda99b3259d44ec2c02dceb3a59bb2ca3c))
76

87
# [1.4.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.3.0...v1.4.0) (2024-01-15)
98

src/core.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
// For more information, see https://crawlee.dev/
2-
import { Configuration, PlaywrightCrawler, ProxyConfiguration, downloadListOfUrls } from "crawlee";
2+
import {
3+
Configuration,
4+
PlaywrightCrawler,
5+
ProxyConfiguration,
6+
downloadListOfUrls,
7+
} from "crawlee";
38
import { readFile, writeFile } from "fs/promises";
49
import { glob } from "glob";
510
import { Config, configSchema } from "./config.js";
@@ -101,7 +106,7 @@ export async function crawl(config: Config) {
101106
exclude:
102107
typeof config.exclude === "string"
103108
? [config.exclude]
104-
: config.exclude ?? [],
109+
: (config.exclude ?? []),
105110
});
106111
},
107112
// Comment this option to scrape the full website.

0 commit comments

Comments
 (0)