Skip to content

Commit 8857306

Browse files
authored
Merge branch 'main' into nodejs-logging-migration
2 parents d8c58cb + 215ff1f commit 8857306

139 files changed

Lines changed: 101033 additions & 5 deletions

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
@@ -1,4 +1,5 @@
11
{
2+
"core/projectify": "5.0.0",
23
"handwritten/bigquery": "8.2.0",
34
"handwritten/bigquery-storage": "5.1.0",
45
"handwritten/cloud-profiler": "6.0.4",

ci/run_conditional_tests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ fi
7272
# necessary.
7373

7474
subdirs=(
75+
core
7576
containers
7677
packages
7778
handwritten
@@ -97,8 +98,8 @@ for subdir in ${subdirs[@]}; do
9798
echo "Skipping ${d} (explicitly ignored in ignore.json)"
9899
continue
99100
fi
100-
if [[ "${subdir}" == "handwritten" && ("${TEST_TYPE}" == "samples" || "${TEST_TYPE}" == "system") ]]; then
101-
echo "Skipping ${TEST_TYPE} test for handwritten package ${d}"
101+
if [[ ("${subdir}" == "handwritten" || "${subdir}" == "core") && ("${TEST_TYPE}" == "samples" || "${TEST_TYPE}" == "system") ]]; then
102+
echo "Skipping ${TEST_TYPE} test for handwritten and core packages: ${d}"
102103
continue
103104
fi
104105

core/projectify/.OwlBot.yaml

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: 397c0bfd367a2427104f988d5329bc117caafd95
17+

core/projectify/.compodocrc

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

core/projectify/.eslintignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**/node_modules
2+
**/coverage
3+
test/fixtures
4+
build/
5+
docs/
6+
protos/
7+
samples/generated/
8+
system-test/**/fixtures

core/projectify/.eslintrc.json

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+
}

core/projectify/.gitattributes

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

core/projectify/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
.nyc_output
3+
build
4+
package-lock.json
5+
docs
6+
.vscode
7+
.coverage
8+
__pycache__

core/projectify/.jsdoc.js

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+
'build/src'
35+
],
36+
includePattern: '\\.js$'
37+
},
38+
templates: {
39+
copyright: 'Copyright 2019 Google, LLC.',
40+
includeDate: false,
41+
sourceFiles: false,
42+
systemName: '@google-cloud/projectify',
43+
theme: 'lumen',
44+
default: {
45+
"outputSourceFiles": false
46+
}
47+
},
48+
markdown: {
49+
idInHeadings: true
50+
}
51+
};

core/projectify/.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.

0 commit comments

Comments
 (0)