Skip to content

Commit

Permalink
Enable running blueprint without entity name
Browse files Browse the repository at this point in the history
Missed a comma after description and fix issue running blueprint
without an entity name. Fixes #6
  • Loading branch information
Panman82 committed Dec 23, 2014
1 parent 8d9c697 commit 05502c2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion blueprints/ember-cli-bootswatch/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module.exports = {
description: 'Add bower dependencies for bootstrap and bootswatch to the project'
description: 'Add bower dependencies for bootstrap and bootswatch to the project',

normalizeEntityName: function() {
// allows us to run ember -g ember-cli-bootswatch and not blow up
// because ember cli normally expects the format
// ember generate <entitiyName> <blueprint>
},

afterInstall: function(options) {
return this.addBowerPackagesToProject([
Expand Down

0 comments on commit 05502c2

Please sign in to comment.