This presentation is powered by Slidev with slidev-theme-academic.
To run the slide show locally:
- install node.js
npm installnpm run dev- visit http://localhost:3030
To check for dependencies that need to be updated, run:
npm outdatedwhich 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 updateKeep 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