Browse Source

Fix README.md.

Herby Vojčík 5 years ago
parent
commit
7b75174aa8
1 changed files with 6 additions and 4 deletions
  1. 6 4
      README.md

+ 6 - 4
README.md

@@ -6,17 +6,19 @@ There is an index.html that demonstrates the functionality.
 
 ## How to try
 
-So to just try it, clone it, bower install, amber config, amber serve and point the browser to http://localhost:4000
+So to just try it, clone it, npm install, amber config, amber serve and point the browser to http://localhost:4000
 
 ## How to install into a project
 
-Include as devDependency in your Amber project:
+Note: This is included by default in a project generated by `amber init`. You do not need to install it manually.
+
+To include as devDependency in your Amber project:
 
 ```
-bower install amber-ide-starter-dialog --save-dev
+npm install @ambers/ide-starter-modal --save-dev
 ```
 
-run ```grunt devel``` to regenerate config, include the loading snippet from README into index.html
+run ```grunt devel``` to regenerate config, include the loading snippet from README into index.html after initialize call resolves:
 
 
 `require(['amber-ide-starter-dialog'], function (s) { s.start(); });`