Skip to content

Commit

Permalink
Merge pull request #453 from ember-admin/fix-inflection
Browse files Browse the repository at this point in the history
use inflection and chalk from npm directly
  • Loading branch information
OpakAlex committed Dec 20, 2015
2 parents c0060a0 + 963c75a commit 42c1d1e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions blueprints/table-view-resource/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var inflection = require('ember-cli/node_modules/inflection');
var inflection = require('inflection');
var path = require('path');
var chalk = require('ember-cli/node_modules/chalk');
var chalk = require('chalk');

module.exports = {
description: 'Generates tableview resource',
Expand Down
4 changes: 2 additions & 2 deletions blueprints/tree-view-resource/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var inflection = require('ember-cli/node_modules/inflection');
var chalk = require('ember-cli/node_modules/chalk');
var inflection = require('inflection');
var chalk = require('chalk');
var path = require('path');

module.exports = {
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@
"ember-watson": "^0.5.0"
},
"dependencies": {
"ember-cli-babel": "^5.0.0",
"broccoli-funnel": "^0.2.3",
"ember-cli-htmlbars": "0.7.9"
"chalk": "^1.1.1",
"ember-cli-babel": "^5.0.0",
"ember-cli-htmlbars": "0.7.9",
"inflection": "^1.8.0"
}
}

0 comments on commit 42c1d1e

Please sign in to comment.