Skip to content

Commit

Permalink
Remove references to node version since it was removed from the RFC
Browse files Browse the repository at this point in the history
  • Loading branch information
cibernox committed Feb 17, 2017
1 parent ee6c06b commit 71aa2b1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions lib/models/project.js
Expand Up @@ -246,9 +246,6 @@ class Project {
],
};
}
if (this.pkg.engines && this.pkg.engines.node) {
this._targets.node = this.pkg.engines.node;
}
return this._targets;
}

Expand Down
7 changes: 0 additions & 7 deletions tests/unit/models/project-test.js
Expand Up @@ -177,11 +177,6 @@ describe('models/project.js', function() {

beforeEach(function() {
projectPath = 'tmp/test-app';
packageContents = {
engines: {
node: '6.6.0',
},
};
});

afterEach(function() {
Expand Down Expand Up @@ -211,7 +206,6 @@ describe('models/project.js', function() {
it('returns the object defined in `/config/targets` if present', function() {
expect(project.targets).to.deep.equal({
browsers: ['last 2 versions', 'safari >= 7'],
node: '6.6.0',
});
});
});
Expand All @@ -233,7 +227,6 @@ describe('models/project.js', function() {
'last 1 Firefox versions',
'last 1 Safari versions',
],
node: '6.6.0',
});
});
});
Expand Down

0 comments on commit 71aa2b1

Please sign in to comment.