Skip to content

Commit

Permalink
rebase & remove unused devdep
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Jul 26, 2017
1 parent 8a5628c commit b7d8499
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 1 addition & 2 deletions packages/language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@
"extend": "^3.0.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"through2": "^2.0.3"
"mocha": "^3.2.0"
},
"scripts": {
"publish-module": "node ../../scripts/publish.js language",
Expand Down
12 changes: 12 additions & 0 deletions packages/language/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*!
* @module language
* @name Language
*/

'use strict';

var extend = require('extend');
Expand All @@ -31,6 +37,9 @@ const VERSION = require('../package.json').version;
* Provides text analysis operations such as sentiment analysis and entity
* recognition.
*
* @constructor
* @alias module:language
*
* @param {object=} options - [Configuration object](#/docs).
* @param {number=} options.port - The port on which to connect to
* the remote host.
Expand All @@ -56,6 +65,9 @@ function languageV1(options) {
* Provides text analysis operations such as sentiment analysis and entity
* recognition.
*
* @constructor
* @alias module:language
*
* @param {object=} options - [Configuration object](#/docs).
* @param {number=} options.port - The port on which to connect to
* the remote host.
Expand Down

0 comments on commit b7d8499

Please sign in to comment.