Skip to content

Commit 864279b

Browse files
committed
Update README setup instructions
*Why*: * The setup steps were stale: they pinned yarn v2 while the repo's package.json declares yarn@3, and they referenced an `install:sdk` step that no longer exists. *What:* * Bump `npm install -g yarn@2` to `yarn@3` to match `packageManager` in package.json. * Drop the obsolete `yarn run install:sdk` step; `@databricks/sdk-experimental` is a regular npm dependency installed by `yarn install`. *Verification:* * Confirmed no `install:sdk` script remains in any package.json and that `@databricks/sdk-experimental` is a dependency in packages/databricks-vscode/package.json. * Confirmed `packageManager` is `yarn@3.2.1`. Co-authored-by: Isaac
1 parent 79ef3eb commit 864279b

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,11 @@ Currently, we have the following packages:
2121
Prepare yarn:
2222

2323
```
24-
npm install -g yarn@2
24+
npm install -g yarn@3
2525
yarn install
2626
```
2727

28-
Prepare Databricks JavaScript SDK:
29-
30-
```
31-
yarn run install:sdk
32-
```
28+
The Databricks JavaScript SDK (`@databricks/sdk-experimental`) is a regular npm dependency and is installed automatically by `yarn install` — no separate step is required.
3329

3430
Prepare Databricks CLI:
3531

0 commit comments

Comments
 (0)