Skip to content

Commit 2fb161d

Browse files
chore: fix package.json repo name (#9)
* 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>
1 parent b1ebd76 commit 2fb161d

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

β€Žpackages/google-cloud-shell/.jsdoc.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = {
4343
copyright: 'Copyright 2021 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
46-
systemName: '@google-cloud/cloud-shell',
46+
systemName: '@google-cloud/shell',
4747
theme: 'lumen',
4848
default: {
4949
outputSourceFiles: false

β€Žpackages/google-cloud-shell/.repo-metadata.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"release_level": "BETA",
88
"language": "nodejs",
99
"repo": "googleapis/nodejs-cloud-shell",
10-
"distribution_name": "@google-cloud/cloud-shell",
10+
"distribution_name": "@google-cloud/shell",
1111
"api_id": "shell.googleapis.com",
1212
"default_version": "v1",
1313
"requires_billing": true

β€Žpackages/google-cloud-shell/README.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# [Cloud Shell: Node.js Client](https://github.com/googleapis/nodejs-cloud-shell)
66

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

1111

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

5353
```bash
54-
npm install @google-cloud/cloud-shell
54+
npm install @google-cloud/shell
5555
```
5656

5757

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

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

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

β€Žpackages/google-cloud-shell/package.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@google-cloud/cloud-shell",
2+
"name": "@google-cloud/shell",
33
"version": "0.1.0",
44
"description": "cloudshell client for Node.js",
5-
"repository": "googleapis/googleapis/nodejs-cloud-shell",
5+
"repository": "googleapis/nodejs-cloud-shell",
66
"license": "Apache-2.0",
77
"author": "Google LLC",
88
"main": "build/src/index.js",

β€Žpackages/google-cloud-shell/protos/protos.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/google-cloud-shell/samples/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test": "c8 mocha --timeout 600000 test/*.js"
1414
},
1515
"dependencies": {
16-
"@google-cloud/cloud-shell": "^0.1.0"
16+
"@google-cloud/shell": "^0.1.0"
1717
},
1818
"devDependencies": {
1919
"c8": "^7.1.0",

β€Žpackages/google-cloud-shell/samples/quickstart.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function main() {
1919

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

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

0 commit comments

Comments
Β (0)