From c3c19fc7181593ff6945b1770b4893166ac5bc79 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Sun, 24 Apr 2022 18:15:03 -0500 Subject: [PATCH] move dev dep note --- docs/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index ae853e9..269a6c3 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -69,15 +69,15 @@ exports most of the symbols for usage as a library. > yarn add -D salty-dog ``` +Unless you want to ship `salty-dog` as a production library without bundling, it should typically be installed as a +development dependency. + Import the main module using: ```typescript import { main } from 'salty-dog/app'; ``` -Unless you want to ship `salty-dog` as a production library without bundling, it should typically be installed as a -development dependency. - Installing as a global package is not recommended, since it makes managing versions difficult and updates will effect multiple projects.