From 26721337a7d12ea7fbf7d52cfaa5954fec652dee Mon Sep 17 00:00:00 2001 From: GitMurf <64155612+GitMurf@users.noreply.github.com> Date: Fri, 23 Apr 2021 10:52:04 -0700 Subject: [PATCH] Update README - Obsidian API update instructions Add the following to the "First time developing plugins?" section: For updates to the Obsidian API run `npm update` in the command line under your repo folder. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a5bac1a..9e4fe9c 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Quick starting guide for new plugin devs: - Make changes to `main.ts` (or create new `.ts` files). Those changes should be automatically compiled into `main.js`. - Reload Obsidian to load the new version of your plugin. - Enable plugin in settings window. +- For updates to the Obsidian API run `npm update` in the command line under your repo folder. ### Releasing new releases