Skip to content

Commit

Permalink
chore: fix package.json repo name (#9)
Browse files Browse the repository at this point in the history
* chore: fix package.json repo name

* 🦉 Updates from OwlBot

* fix: update package name so it does not sound so redundant"

* 🦉 Updates from OwlBot

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
sofisl and gcf-owl-bot[bot] committed Jun 8, 2021
1 parent b1ebd76 commit 2fb161d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/google-cloud-shell/.jsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = {
copyright: 'Copyright 2021 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/cloud-shell',
systemName: '@google-cloud/shell',
theme: 'lumen',
default: {
outputSourceFiles: false
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-shell/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"release_level": "BETA",
"language": "nodejs",
"repo": "googleapis/nodejs-cloud-shell",
"distribution_name": "@google-cloud/cloud-shell",
"distribution_name": "@google-cloud/shell",
"api_id": "shell.googleapis.com",
"default_version": "v1",
"requires_billing": true
Expand Down
6 changes: 3 additions & 3 deletions packages/google-cloud-shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# [Cloud Shell: Node.js Client](https://github.com/googleapis/nodejs-cloud-shell)

[![release level](https://img.shields.io/badge/release%20level-beta-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
[![npm version](https://img.shields.io/npm/v/@google-cloud/cloud-shell.svg)](https://www.npmjs.org/package/@google-cloud/cloud-shell)
[![npm version](https://img.shields.io/npm/v/@google-cloud/shell.svg)](https://www.npmjs.org/package/@google-cloud/shell)
[![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-cloud-shell/master.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-cloud-shell)


Expand Down Expand Up @@ -51,7 +51,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
### Installing the client library

```bash
npm install @google-cloud/cloud-shell
npm install @google-cloud/shell
```


Expand All @@ -62,7 +62,7 @@ npm install @google-cloud/cloud-shell

// remove this line after package is released
// eslint-disable-next-line node/no-missing-require
const {CloudShellServiceClient} = require('@google-cloud/cloud-shell');
const {CloudShellServiceClient} = require('@google-cloud/shell');

// TODO(developer): replace with your prefered project ID.
// const projectId = 'my-project'
Expand Down
4 changes: 2 additions & 2 deletions packages/google-cloud-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@google-cloud/cloud-shell",
"name": "@google-cloud/shell",
"version": "0.1.0",
"description": "cloudshell client for Node.js",
"repository": "googleapis/googleapis/nodejs-cloud-shell",
"repository": "googleapis/nodejs-cloud-shell",
"license": "Apache-2.0",
"author": "Google LLC",
"main": "build/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-shell/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/google-cloud-shell/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "c8 mocha --timeout 600000 test/*.js"
},
"dependencies": {
"@google-cloud/cloud-shell": "^0.1.0"
"@google-cloud/shell": "^0.1.0"
},
"devDependencies": {
"c8": "^7.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-shell/samples/quickstart.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function main() {

// remove this line after package is released
// eslint-disable-next-line node/no-missing-require
const {CloudShellServiceClient} = require('@google-cloud/cloud-shell');
const {CloudShellServiceClient} = require('@google-cloud/shell');

// TODO(developer): replace with your prefered project ID.
// const projectId = 'my-project'
Expand Down

0 comments on commit 2fb161d

Please sign in to comment.