Browse Source

Merge pull request #24 from amber-smalltalk/fix-after-text

Changed the after text.
Manfred Kröhnert 10 years ago
parent
commit
04b1809b4b
1 changed files with 6 additions and 2 deletions
  1. 6 2
      template.js

+ 6 - 2
template.js

@@ -15,8 +15,12 @@ exports.description = 'Create a web application based on Amber Smalltalk.';
 exports.notes = ' _Project title_ should be a human-readable title.';
 
 // Template-specific notes to be displayed after question prompts.
-exports.after = 'You should now install project dependencies with _bower install_.' +
-  ' Afterwards, start the development server with _./bower_components/amber/bin/amber serve_.' +
+exports.after = 'You need to have these installed globally via npm:' +
+  ' _amber-cli_; _grunt-cli_; _bower_.' +
+  ' Now, install project dependencies with _bower install_,' +
+  ' tool dependencies with _npm install_ and optionally, recompile with _grunt_.' +
+  ' If you are running _amber init_, these three tasks are going to be performed for you now.' +
+  ' Afterwards, start the development server with _amber serve_.' +
   ' Your application is then accessible via _http://localhost:4000/_';
 
 // Any existing file or directory matching this wildcard will cause a warning.