diff --git a/lib/cli/generate.js b/lib/cli/generate.js index d8982c2a..a525fec1 100644 --- a/lib/cli/generate.js +++ b/lib/cli/generate.js @@ -39,11 +39,6 @@ var schema = [ type: 'string', default: '' }, - { - name: 'twitter', - description: 'Twitter handle (without @) [acme]', - type: 'string' - }, { name: 'coordinates', description: 'Resort location [longitude, latitude]', @@ -107,9 +102,6 @@ function generate(resort) { tags: resort.tags, ll: resort.coordinates }; - if (resort.twitter) { - json.twitter = resort.twitter; - } if (resort.opening) { json.opening = resort.opening; }