Skip to content

Commit

Permalink
Remove version lower bound check (#423)
Browse files Browse the repository at this point in the history
The engines field in package.json serves this purpose now.

PR-URL: #423
  • Loading branch information
matthewloring authored Feb 28, 2017
1 parent f17bd67 commit e74b60a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ var common = require('@google-cloud/common');
var extend = require('extend');
var constants = require('./src/constants.js');
var gcpMetadata = require('gcp-metadata');
var semver = require('semver');
var traceUtil = require('./src/util.js');
var TraceApi = require('./src/trace-api.js');
var pluginLoader = require('./src/trace-plugin-loader.js');
Expand Down Expand Up @@ -92,11 +91,6 @@ function start(projectConfig) {
tag: '@google/cloud-trace'
});

if (!semver.satisfies(process.versions.node, '>=0.12')) {
logger.error('Tracing is only supported on Node versions >=0.12');
return traceApi;
}

if (config.projectId) {
logger.info('Locally provided ProjectId: ' + config.projectId);
}
Expand Down

0 comments on commit e74b60a

Please sign in to comment.