Skip to content

Commit 37b6602

Browse files
authored
docs: update beta install example with version tags (#3312)
The README contains outdated version number, which might lead to confusion when copy-pasting commands.
1 parent 2229ab6 commit 37b6602

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ By default, Crawlee stores data to `./storage` in the current working directory.
8989
We provide automated beta builds for every merged code change in Crawlee. You can find them in the npm [list of releases](https://www.npmjs.com/package/crawlee?activeTab=versions). If you want to test new features or bug fixes before we release them, feel free to install a beta build like this:
9090

9191
```bash
92-
npm install crawlee@3.12.3-beta.13
92+
npm install crawlee@next
9393
```
9494

9595
If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need to specify dependency overrides in your `package.json` file so that you don't end up with multiple versions of Crawlee installed:
@@ -98,9 +98,9 @@ If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need
9898
{
9999
"overrides": {
100100
"apify": {
101-
"@crawlee/core": "3.12.3-beta.13",
102-
"@crawlee/types": "3.12.3-beta.13",
103-
"@crawlee/utils": "3.12.3-beta.13"
101+
"@crawlee/core": "$crawlee",
102+
"@crawlee/types": "$crawlee",
103+
"@crawlee/utils": "$crawlee"
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)