Skip to content

Commit

Permalink
rerun lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Dec 6, 2024
1 parent 28ae15b commit 82f62bd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion gax/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"test:cjs": "mocha build/cjs/test/unit",
"test:esm": "mocha build/esm/test/unit --loader=esmock --enable-source-maps",
"test": "npm run test:esm && npm run test:cjs",
"lint": "gts check src samples test",
"lint": "gts check esm/src samples esm/test",
"clean": "rm -rf build",
"compile": "npm run compile:esm && npm run compile:cjs",
"compile:esm": "tsc -p ./tsconfig.esm.json && cp esm/src/*.json build/esm/src && cp -r esm/test/fixtures build/esm/test && node replace-things.cjs protos/http.js protos/iam_service.js protos/locations.js protos/operations.js && cp -r protos build",
Expand Down
3 changes: 0 additions & 3 deletions tools/src/compileProtos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ export const gaxProtos = path.join(
'..',
'protos'
);
console.log('GAX PROTOS PATH:')
console.log(gaxProtos)
const readdir = util.promisify(fs.readdir);
const readFile = util.promisify(fs.readFile);
const writeFile = util.promisify(fs.writeFile);
Expand Down Expand Up @@ -394,7 +392,6 @@ export async function generateRootName(directories: string[]): Promise<string> {
* `./src` folder of the given client library.
*/
export async function main(parameters: string[]): Promise<void> {
console.log('we are in local gapic tools')
const protoJsonFiles: string[] = [];
let skipJson = false;
let esm = false;
Expand Down

0 comments on commit 82f62bd

Please sign in to comment.