Skip to content

Commit e7a733a

Browse files
chore: update CODEOWNERS, copyright, proto config (#13)
* changes without context autosynth cannot find the source of changes triggered by earlier changes in this repository, or by version upgrades to tools such as linters. * refactor(nodejs): move build cop to flakybot Source-Author: Benjamin E. Coe <[email protected]> Source-Date: Tue Jan 26 16:48:20 2021 -0800 Source-Repo: googleapis/synthtool Source-Sha: 57c23fa5705499a4181095ced81f0ee0933b64f6 Source-Link: googleapis/synthtool@57c23fa * fix: use repo metadata to populate nodejs CODEOWNERS * fix: use repo metadata to populate nodejs CODEOWNERS * chore: small formatting tweaks Co-authored-by: Benjamin Coe <[email protected]> Source-Author: Justin Beckwith <[email protected]> Source-Date: Wed Feb 3 15:09:55 2021 -0800 Source-Repo: googleapis/synthtool Source-Sha: 318e351e26ba65b2b3cfa3f61b3b64e3540c3525 Source-Link: googleapis/synthtool@318e351
1 parent 5233731 commit e7a733a

File tree

12 files changed

+127
-21
lines changed

12 files changed

+127
-21
lines changed

packages/google-devtools-artifactregistry/.jsdoc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ module.exports = {
4040
includePattern: '\\.js$'
4141
},
4242
templates: {
43-
copyright: 'Copyright 2020 Google LLC',
43+
copyright: 'Copyright 2021 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
4646
systemName: 'artifactregistry',

packages/google-devtools-artifactregistry/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ npm install @google-cloud/artifact-registry
6262

6363
// remove this line after package is released
6464
// eslint-disable-next-line node/no-missing-require
65-
const {
66-
ArtifactRegistryClient,
67-
} = require('@google-cloud/artifact-registry');
65+
const {ArtifactRegistryClient} = require('@google-cloud/artifact-registry');
6866

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

packages/google-devtools-artifactregistry/protos/protos.d.ts

+15-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/protos/protos.js

+85-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/protos/protos.json

+14-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-devtools-artifactregistry/src/v1beta2/artifact_registry_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-devtools-artifactregistry/src/v1beta2/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-devtools-artifactregistry/synth.metadata

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/nodejs-artifact-registry.git",
7-
"sha": "8db79fbc711b89107e670db54d69f9685dae457b"
7+
"sha": "b33d4661cea3deae6e625c3b69faac179307aaa4"
88
}
99
},
1010
{
@@ -19,7 +19,7 @@
1919
"git": {
2020
"name": "synthtool",
2121
"remote": "https://github.com/googleapis/synthtool.git",
22-
"sha": "363fe305e9ce34a6cd53951c6ee5f997094b54ee"
22+
"sha": "318e351e26ba65b2b3cfa3f61b3b64e3540c3525"
2323
}
2424
}
2525
],

packages/google-devtools-artifactregistry/system-test/fixtures/sample/src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
1717
// ** All changes to this file may be overwritten. **
1818

1919
/* eslint-disable node/no-missing-require, no-unused-vars */
20-
const artifactregistry = require('@google-cloud/artifact-registry');
20+
const artifactregistry = require('artifactregistry');
2121

2222
function main() {
2323
const artifactRegistryClient = new artifactregistry.ArtifactRegistryClient();

packages/google-devtools-artifactregistry/system-test/fixtures/sample/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
1616
// ** https://github.com/googleapis/gapic-generator-typescript **
1717
// ** All changes to this file may be overwritten. **
1818

19-
import {ArtifactRegistryClient} from '@google-cloud/artifact-registry';
19+
import {ArtifactRegistryClient} from 'artifactregistry';
2020

2121
// check that the client class type name can be used
2222
function doStuffWithArtifactRegistryClient(client: ArtifactRegistryClient) {

packages/google-devtools-artifactregistry/system-test/install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-devtools-artifactregistry/test/gapic_artifact_registry_v1beta2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)