We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b796bc commit cf355f6Copy full SHA for cf355f6
1 file changed
packages/google-cloud-language/synth.py
@@ -6,6 +6,7 @@
6
logging.basicConfig(level=logging.DEBUG)
7
8
gapic = gcp.GAPICGenerator()
9
+common_templates = gcp.CommonTemplates()
10
11
# tasks has two product names, and a poorly named artman yaml
12
for version in ['v1', 'v1beta2']:
@@ -17,6 +18,10 @@
17
18
library,
19
excludes=['package.json', 'README.md', 'src/index.js'])
20
21
+templates = common_templates.node_library(package_name="@google-cloud/language")
22
+s.copy(templates)
23
+
24
25
# Node.js specific cleanup
26
subprocess.run(['npm', 'ci'])
27
subprocess.run(['npm', 'run', 'prettier'])
0 commit comments