Skip to content

Commit

Permalink
docs: add supported hapi versions to readme-partials (#1245)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Apr 21, 2020
1 parent 6aff008 commit 69b4049
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
test/fixtures
src/plugins/types
src/plugins/types/
5 changes: 3 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
test/fixtures
src/plugins/types
src/plugins/types/
2 changes: 1 addition & 1 deletion .readme-partials.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body: |-
The trace agent can do automatic tracing of the following web frameworks:
* [express](https://www.npmjs.com/package/express) (version 4)
* [gRPC](https://www.npmjs.com/package/grpc) server (version ^1.1)
* [hapi](https://www.npmjs.com/package/hapi) (versions 8 - 16)
* [hapi](https://www.npmjs.com/package/hapi) (versions 8 - 19)
* [koa](https://www.npmjs.com/package/koa) (version 1 - 2)
* [restify](https://www.npmjs.com/package/restify) (versions 3 - 7)
Expand Down
11 changes: 8 additions & 3 deletions synth.metadata
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"updateTime": "2020-04-07T11:29:23.050438Z",
"sources": [
{
"git": {
"name": ".",
"remote": "git@github.com:googleapis/cloud-trace-nodejs.git",
"sha": "3918c150743111d362d9bccb206c8bc88762fe30"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
"sha": "1df68ed6735ddce6797d0f83641a731c3c3f75b4",
"log": "1df68ed6735ddce6797d0f83641a731c3c3f75b4\nfix: apache license URL (#468)\n\n\nf4a59efa54808c4b958263de87bc666ce41e415f\nfeat: Add discogapic support for GAPICBazel generation (#459)\n\n* feat: Add discogapic support for GAPICBazel generation\n\n* reformat with black\n\n* Rename source repository variable\n\nCo-authored-by: Jeffrey Rennie <rennie@google.com>\n"
"sha": "f5e4c17dc78a966dbf29961dd01f9bbd63e20a04"
}
}
]
Expand Down
8 changes: 7 additions & 1 deletion synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import synthtool as s
import synthtool.gcp as gcp
import logging
import subprocess

logging.basicConfig(level=logging.DEBUG)

Expand All @@ -23,7 +24,12 @@
common_templates = gcp.CommonTemplates()
templates = common_templates.node_library()
# Don't use .nycrc for code coverage (see "Fix Code Coverage")
s.copy(templates, excludes=['.nycrc', '.github/workflows/ci.yaml'])
s.copy(templates, excludes=[
'.eslintignore',
'.github/workflows/ci.yaml',
'.nycrc',
'.prettierignore'
])

### SUPPORT DATABASE PLUGINS ###
# Database plugins require that an instance of that database is running at a
Expand Down

0 comments on commit 69b4049

Please sign in to comment.