From ce71b5a3cc5d53f04d83f6162f1fd7105a685505 Mon Sep 17 00:00:00 2001 From: Youssef Kababe Date: Sun, 18 Oct 2015 23:12:07 +0100 Subject: [PATCH] Add .travis.yml file --- .travis.yml | 8 ++++++++ README.md | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f8b1665 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: node_js +node_js: + - stable + - 4.2.1 +notifications: + email: + on_success: always + on_failure: always \ No newline at end of file diff --git a/README.md b/README.md index 4b69b39..6b59064 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ app.listen(3000); Your **views/** directory will contain four types of files: Layouts, Templates, Partials, and Helpers. -If your **views/** directory is somewhere other than ther root of your application folder, you need to specify it like this: +If your **views/** directory is somewhere other than the root of your application folder, you need to specify it like this: ```javascript app.engine('hbs', exbars({defaultLayout: 'main', viewsPath: 'app/views'}));