Skip to content

Commit 5a4abc4

Browse files
JustinBeckwithalexander-fenster
authored andcommitted
refactor: drop repo-tool as an exec wrapper (#224)
1 parent 87f91d8 commit 5a4abc4

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

handwritten/firestore/.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
command: |-
7979
mkdir -p /home/node/.npm-global
8080
npm install
81-
chmod +x node_modules/@google-cloud/nodejs-repo-tools/bin/tools
8281
environment:
8382
NPM_CONFIG_PREFIX: /home/node/.npm-global
8483
- run:

handwritten/firestore/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
],
4141
"scripts": {
4242
"cover": "nyc --reporter=lcov mocha --require intelli-espower-loader test/*.js && nyc report",
43-
"docs": "repo-tools exec -- jsdoc -c .jsdoc.js",
43+
"docs": "jsdoc -c .jsdoc.js",
4444
"generate-scaffolding": "repo-tools generate all",
45-
"lint": "repo-tools lint --cmd eslint -- src/ system-test/ test/ conformance/",
46-
"prettier": "repo-tools exec -- prettier --write src/*.js src/**/*.js test/*.js test/**/*.js system-test/*.js system-test/**/*.js conformance/*.js conformance/**/*.js",
45+
"lint": "eslint src/ system-test/ test/ conformance/",
46+
"prettier": "prettier --write src/*.js src/**/*.js test/*.js test/**/*.js system-test/*.js system-test/**/*.js conformance/*.js conformance/**/*.js",
4747
"publish-module": "node ../../scripts/publish.js firestore",
48-
"system-test": "repo-tools test run --cmd mocha -- system-test/*.js --timeout 600000",
49-
"conformance": "repo-tools test run --cmd mocha -- conformance/*.js --no-timeouts",
50-
"test-no-cover": "repo-tools test run --cmd mocha -- test/*.js --no-timeouts",
51-
"test": "repo-tools test run --cmd npm -- run cover"
48+
"system-test": "mocha system-test/*.js --timeout 600000",
49+
"conformance": "mocha conformance/*.js --no-timeouts",
50+
"test-no-cover": "mocha test/*.js --no-timeouts",
51+
"test": "npm run cover"
5252
},
5353
"dependencies": {
5454
"@google-cloud/common": "^0.20.0",

0 commit comments

Comments
 (0)