Skip to content

Commit

Permalink
fix: package.json lint + ignore gitpkg.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePresman committed Dec 18, 2023
1 parent c0b88c6 commit b30d2e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ module.exports = {
"import/extensions": [".js", ".jsx", ".ts", ".tsx"],
jsdoc: { ignoreInternal: true },
},
ignorePatterns: ["/node_modules/", "/dist/"],
ignorePatterns: ["/node_modules/", "/dist/", "gitpkg.config.js"],
};
4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"build": "rm -rf dist && tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
"fmt": "prettier --write . && eslint --fix .",
"lint": "prettier --check . && eslint . && tsc --project tsconfig.eslint.json && tsc --project spec/tsconfig.json",
"test": "DL_SKIP_SSL_VERIFICATION=1 NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" jest --runInBand",
"prerelease": "gitpkg publish"
"prerelease": "gitpkg publish",
"test": "DL_SKIP_SSL_VERIFICATION=1 NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" jest --runInBand"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.12",
Expand Down

0 comments on commit b30d2e2

Please sign in to comment.