Skip to content

Commit 1da5e21

Browse files
authored
Merge pull request #7308 from googleapis/nodejs-error-reporting-migration
migrate code from googleapis/nodejs-error-reporting
2 parents f4747a5 + fd360d0 commit 1da5e21

107 files changed

Lines changed: 11140 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"handwritten/cloud-profiler": "6.0.4",
44
"handwritten/datastore": "10.1.0",
55
"handwritten/firestore": "8.3.0",
6+
"handwritten/error-reporting": "3.0.5",
67
"handwritten/logging-bunyan": "5.1.1",
78
"handwritten/logging-winston": "6.0.1",
89
"handwritten/spanner": "8.6.0",
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Copyright 2021 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
16+
begin-after-commit-hash: 674a41e0de2869f44f45eb7b1a605852a5394bba
17+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
tsconfig: ./tsconfig.json
3+
output: ./docs
4+
theme: material
5+
hideGenerator: true
6+
disablePrivate: true
7+
disableProtected: true
8+
disableInternal: true
9+
disableCoverage: true
10+
disableGraph: true
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
**/node_modules
2+
**/coverage
3+
test/fixtures
4+
build/
5+
docs/
6+
protos/
7+
samples/generated/
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/gts"
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.ts text eol=lf
2+
*.js text eol=lf
3+
protos/* linguist-generated
4+
**/api-extractor.json linguist-language=JSON-with-Comments
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
**/*.log
2+
**/node_modules
3+
.coverage
4+
.DS_Store
5+
.nyc_output
6+
docs/
7+
google-cloud-error-reporting-*.tgz
8+
out/
9+
system-test/secrets.js
10+
system-test/*key.json
11+
build
12+
.vscode
13+
package-lock.json
14+
key.json
15+
__pycache__
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// Copyright 2019 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
16+
'use strict';
17+
18+
module.exports = {
19+
opts: {
20+
readme: './README.md',
21+
package: './package.json',
22+
template: './node_modules/jsdoc-fresh',
23+
recurse: true,
24+
verbose: true,
25+
destination: './docs/'
26+
},
27+
plugins: [
28+
'plugins/markdown',
29+
'jsdoc-region-tag'
30+
],
31+
source: {
32+
excludePattern: '(^|\\/|\\\\)[._]',
33+
include: [
34+
'src'
35+
],
36+
includePattern: '\\.js$'
37+
},
38+
templates: {
39+
copyright: 'Copyright 2019 Google, LLC.',
40+
includeDate: false,
41+
sourceFiles: false,
42+
systemName: '@google-cloud/error-reporting',
43+
theme: 'lumen',
44+
default: {
45+
"outputSourceFiles": false
46+
}
47+
},
48+
markdown: {
49+
idInHeadings: true
50+
}
51+
};

handwritten/error-reporting/.kokoro/.gitattributes

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

handwritten/error-reporting/.kokoro/common.cfg

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)