We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e32aa04 commit 6a4fa61Copy full SHA for 6a4fa61
2 files changed
handwritten/bigtable/package.json
@@ -40,7 +40,9 @@
40
"presystem-test": "npm run compile",
41
"system-test": "mocha build/system-test --timeout 600000",
42
"pretest": "npm run compile",
43
- "test": "c8 mocha build/test"
+ "test": "c8 mocha build/test",
44
+ "clean": "gts clean",
45
+ "precompile": "gts clean"
46
},
47
"dependencies": {
48
"@google-cloud/paginator": "^3.0.0",
handwritten/bigtable/synth.py
@@ -1,7 +1,7 @@
1
import synthtool as s
2
import synthtool.gcp as gcp
3
+import synthtool.languages.node as node
4
import logging
-import subprocess
5
import os
6
7
logging.basicConfig(level=logging.DEBUG)
@@ -56,6 +56,4 @@
56
)
57
s.copy(templates)
58
59
-subprocess.run(['npm', 'install'])
60
-subprocess.run(['npm', 'run', 'fix'])
61
-subprocess.run(['npx', 'compileProtos', 'src'])
+node.postprocess_gapic_library()
0 commit comments