Skip to content

Commit

Permalink
Merge pull request #50 from YKassim/ykassim
Browse files Browse the repository at this point in the history
Updated dependencies and removed deprecated elements
  • Loading branch information
vuxor authored Sep 15, 2016
2 parents eda848a + ce0f52e commit ae118dc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ var path = require('path');
var yeoman = require('yeoman-generator');
var yosay = require('yosay');

module.exports = yeoman.generators.Base.extend({
module.exports = yeoman.Base.extend({
constructor: function () {
yeoman.generators.Base.apply(this, arguments);
yeoman.Base.apply(this, arguments);
// add option to skip install
this.option('skip-install');
this.argument('appname', {
Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@
],
"preferGlobal": true,
"dependencies": {
"chalk": "1.0.0",
"lodash": "3.7.0",
"npm-check": "3.2.10",
"yeoman-generator": "0.19.2",
"chalk": "1.1.x",
"lodash": "4.13.x",
"npm-check": "5.2.x",
"yeoman-generator": "0.23.x",
"yeoman-assert": "2.2.x",
"yeoman-test": "1.4.x",
"yosay": "1.0.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions test/test-app.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';

var path = require('path'),
assert = require('yeoman-generator').assert,
helpers = require('yeoman-generator').test,
assert = require('yeoman-assert'),
helpers = require('yeoman-test'),
os = require('os');

describe('when angular2 generator generates', function () {
Expand Down

0 comments on commit ae118dc

Please sign in to comment.