This presentation is powered by Slidev with slidev-theme-academic.
To run the slide show locally:
- install node.js
npm install
npm run dev
- visit http://localhost:3030
To check for dependencies that need to be updated, run:
npm outdated
which will output something like this:
Package Current Wanted Latest Location Depended by
@slidev/cli 0.43.11 0.43.15 0.46.1 node_modules/@slidev/cli xxxxxxxx
To updated installed dependencies, simply run:
npm update
Keep in mind that npm update will never update to a major breaking-changes version, only to a minor one. What this means is, it will use the Wanted version in the table above instead of the Latest version. To obtain the Latest version, call the install command with @latest appended to the package name. For example, to update @slidev/cli to the latest version, run:
npm install @slidev/cli@latest