From 07be346908514436fd55519418af102c53c9a633 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Wed, 26 Feb 2020 21:10:45 -0800 Subject: [PATCH 1/3] build: add publish.yml enabling GitHub app for publishes (#12) --- .github/publish.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/publish.yml diff --git a/.github/publish.yml b/.github/publish.yml new file mode 100644 index 00000000..e69de29b From 81ffc7735af6594441f81548839cd218f4c5d3d4 Mon Sep 17 00:00:00 2001 From: Summer Ji Date: Thu, 27 Feb 2020 11:52:46 -0800 Subject: [PATCH 2/3] chore: update jsdoc.js (#14) --- .jsdoc.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 719a77bf..908288f5 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -36,11 +36,14 @@ module.exports = { includePattern: '\\.js$' }, templates: { - copyright: 'Copyright 2018 Google, LLC.', + copyright: 'Copyright 2019 Google, LLC.', includeDate: false, sourceFiles: false, systemName: '@google-cloud/bigquery-storage', - theme: 'lumen' + theme: 'lumen', + default: { + "outputSourceFiles": false + } }, markdown: { idInHeadings: true From f6f644f2c07aaf35cd5033be3a2ed926dd6e1ff2 Mon Sep 17 00:00:00 2001 From: Summer Ji Date: Thu, 27 Feb 2020 15:38:41 -0800 Subject: [PATCH 3/3] chore: update .jsdoc.js by add protos and remove double quotes (#15) --- .jsdoc.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.jsdoc.js b/.jsdoc.js index 908288f5..079bc593 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -31,7 +31,8 @@ module.exports = { source: { excludePattern: '(^|\\/|\\\\)[._]', include: [ - 'build/src' + 'build/src', + 'protos' ], includePattern: '\\.js$' }, @@ -42,7 +43,7 @@ module.exports = { systemName: '@google-cloud/bigquery-storage', theme: 'lumen', default: { - "outputSourceFiles": false + outputSourceFiles: false } }, markdown: {