Skip to content

Commit 7f79519

Browse files
committed
fix repo in semver script [semver minor]
1 parent ba26c45 commit 7f79519

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,26 @@ and there is also a [REST API](http://www.ibm.com/smarterplanet/us/en/ibmwatson/
2121

2222
Pre-compiled bundles are available from on GitHub Releases - just download the file and drop it into your website: https://github.com/watson-developer-cloud/speech-javascript-sdk/releases
2323

24+
### Installation - bower
2425

25-
### Installation - npm with browserify
26+
```sh
27+
bower install --save watson-speech
28+
```
2629

27-
This library is built with [browserify](http://browserify.org/) and easy to use in browserify-based projects :
30+
### Installation - npm with Browserify or Webpack
31+
32+
This library can be bundled with [browserify](http://browserify.org/) or [Webpack](http://webpack.github.io/)
33+
and easy included in larger projects:
2834

2935
npm install --save watson-speech
3036

37+
This method enables a smaller bundle by only including the desired components, for example:
38+
39+
```js
40+
var recognizeMic = require('watson-speech/speech-to-text/recognize-microphone');
41+
```
42+
43+
3144
Breaking change for v0.22.0
3245
----------------------------
3346

scripts/create_semver_tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# get a token from https://github.com/settings/tokens with the `public_repo` scope and encrypt it like so:
1212
# travis encrypt --add -r user-org-name/repo-name 'GH_TOKEN=xxxxxxxxxxxxxxxxxxx'
1313
# then set the below vars and make sure travis runs this script in the "after_success" section
14-
export REPO="watson-developer-cloud/node-sdk"
14+
export REPO="watson-developer-cloud/speech-javascript-sdk"
1515
export BRANCH="master"
1616

1717

0 commit comments

Comments
 (0)