Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
chore: update npm scripts and synth.py (#433)
Browse files Browse the repository at this point in the history
Update npm scripts: add clean, prelint, prefix; make sure that lint and fix are set properly. Use post-process feature of synthtool.
  • Loading branch information
alexander-fenster authored Apr 24, 2020
1 parent 07a1442 commit 604fdd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts fix",
"lint": "gts check",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"system-test": "c8 mocha build/system-test --timeout 600000",
"test": "c8 mocha build/test",
Expand All @@ -40,7 +40,8 @@
"clean": "gts clean",
"compile": "tsc -p . && cp -r protos build/",
"compile-protos": "compileProtos src",
"prepare": "npm run compile"
"prepare": "npm run compile",
"precompile": "gts clean"
},
"dependencies": {
"google-gax": "^2.1.0"
Expand Down
7 changes: 2 additions & 5 deletions synth.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import synthtool as s
import synthtool.gcp as gcp
import synthtool.languages.node as node
import logging
import subprocess

logging.basicConfig(level=logging.DEBUG)

Expand Down Expand Up @@ -30,7 +30,4 @@
templates = common_templates.node_library(source_location='build/src')
s.copy(templates)

# Node.js specific cleanup
subprocess.run(["npm", "install"])
subprocess.run(["npm", "run", "lint"])
subprocess.run(['npx', 'compileProtos', 'src'])
node.postprocess_gapic_library()

0 comments on commit 604fdd6

Please sign in to comment.