From da0c66ae82a4e7f846c4469d04bfb2100c4c0cf4 Mon Sep 17 00:00:00 2001 From: Derek Henscheid Date: Sat, 2 Nov 2013 14:16:15 -0500 Subject: [PATCH] Update index.js fix route generator to use angular-fullstack generators instead of angular generators --- route/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/route/index.js b/route/index.js index 8aeb93851..87939697f 100644 --- a/route/index.js +++ b/route/index.js @@ -7,8 +7,8 @@ var angularUtils = require('../util.js'); var Generator = module.exports = function Generator() { ScriptBase.apply(this, arguments); - this.hookFor('angular:controller'); - this.hookFor('angular:view'); + this.hookFor('angular-fullstack:controller'); + this.hookFor('angular-fullstack:view'); }; util.inherits(Generator, ScriptBase);