diff --git a/packages/google-cloud-language/.circleci/config.yml b/packages/google-cloud-language/.circleci/config.yml index 97f54e8d3f9..0993572efc8 100644 --- a/packages/google-cloud-language/.circleci/config.yml +++ b/packages/google-cloud-language/.circleci/config.yml @@ -117,13 +117,15 @@ jobs: - checkout - run: name: Install modules and dependencies. - command: npm install + command: | + npm install + npm link - run: name: Link the module being tested to the samples. command: | cd samples/ - npm install npm link @google-cloud/language + npm install cd .. - run: name: Run linting. @@ -161,8 +163,8 @@ jobs: name: Link the module being tested to the samples. command: | cd samples/ - npm install npm link @google-cloud/language + npm install cd .. - run: name: Run sample tests. diff --git a/packages/google-cloud-language/package.json b/packages/google-cloud-language/package.json index d705b4b019b..f2a69bf05df 100644 --- a/packages/google-cloud-language/package.json +++ b/packages/google-cloud-language/package.json @@ -1,7 +1,7 @@ { "name": "@google-cloud/language", "description": "Google Cloud Natural Language API client for Node.js", - "version": "0.12.1", + "version": "0.13.0", "license": "Apache-2.0", "author": "Google Inc", "engines": { diff --git a/packages/google-cloud-language/samples/package.json b/packages/google-cloud-language/samples/package.json index a31c84a5da8..a06f4835399 100644 --- a/packages/google-cloud-language/samples/package.json +++ b/packages/google-cloud-language/samples/package.json @@ -19,7 +19,7 @@ "test": "repo-tools test run --cmd npm -- run cover" }, "dependencies": { - "@google-cloud/language": "0.12.1", + "@google-cloud/language": "0.13.0", "@google-cloud/storage": "1.4.0", "yargs": "9.0.1" },