Skip to content

Commit

Permalink
chore: update dependencies in /docs (#2103)
Browse files Browse the repository at this point in the history
This pull request includes updates to the documentation build process
and dependency management for the project. The most important changes
include switching from `npm` to `yarn` for installing dependencies and
starting the development server, and updating the `mintlify` package
version.

Documentation build process updates:

*
[`docs/README.md`](diffhunk://#diff-0b5ca119d2be595aa307d34512d9679e49186307ef94201e4b3dfa079aa89938L15-R16):
Changed the instructions to use `yarn install` and `yarn dev` instead of
`npm i -g mintlify` and `mintlify dev`.

Dependency management updates:

*
[`docs/package.json`](diffhunk://#diff-adfa337ce44dc2902621da20152a048dac41878cf3716dfc4cc56d03aa212a56L11-R12):
Updated the `mintlify` package version from `^4.0.135` to `^4.0.301` and
moved it from `devDependencies` to `dependencies`. Removed the `sharp`
package from `dependencies`.
  • Loading branch information
BenElferink authored Dec 29, 2024
1 parent 59e4f90 commit 720c497
Show file tree
Hide file tree
Showing 3 changed files with 2,467 additions and 1,957 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ The documentation is build on [Mintlify](https://www.npmjs.com/package/mintlify)

```
# make sure you're in `/docs` folder, where `mint.json` and `package.json` files are
npm i -g mintlify
mintlify dev
yarn install
yarn dev
```

### 😎 Publishing Changes
Expand Down
5 changes: 1 addition & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
},
"author": "Odigos",
"license": "Apache-2.0",
"devDependencies": {
"mintlify": "^4.0.135"
},
"dependencies": {
"sharp": "^0.33.4"
"mintlify": "^4.0.301"
}
}
Loading

0 comments on commit 720c497

Please sign in to comment.