Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/update dependencies #9

Merged
merged 11 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .config/husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn commit message lint
yarn commit message lint
5 changes: 1 addition & 4 deletions .config/husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn commit staged
yarn commit staged
5 changes: 1 addition & 4 deletions .config/husky/prepare-commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn commit message $@
yarn commit message $@
112 changes: 60 additions & 52 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,046 changes: 499 additions & 547 deletions .yarn/releases/yarn.cjs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
compressionLevel: mixed

defaultSemverRangePrefix: ""
defaultSemverRangePrefix: ''

enableGlobalCache: true

globalFolder: ../.yarn/berry

packageExtensions:
"@grpc/grpc-js@*":
'@grpc/grpc-js@*':
dependencies:
long: "*"
long: '*'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

нужно ли нам это после бампа версий?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Нет, удалил


pnpEnableEsmLoader: true

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# template

Template repo
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "grpc",
"private": true,
"license": "BSD 3-Clause",
"type": "module",
"private": true,
"workspaces": [
"packages/**/*"
],
"devDependencies": {
"@atls/code-runtime": "1.1.0",
"@types/node": "^17.0.12",
"typescript": "5.4.2"
},
"workspaces": [
"packages/**/*"
],
"dependenciesMeta": {
"@grpc/[email protected]": {
"unplugged": true
Expand All @@ -19,5 +19,6 @@
"unplugged": true
}
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"typecheckSkipLibCheck": true
}
19 changes: 11 additions & 8 deletions packages/grpc-error-status/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
{
"name": "@atls/grpc-error-status",
"version": "0.0.3",
"version": "0.1.4",
"license": "BSD-3-Clause",
"type": "module",
"main": "src/index.ts",
"files": [
"proto",
"dist"
],
"scripts": {
"proto:generate": "PATH=$PATH:$(yarn bin protoc-gen-ts) buf generate",
"proto:lint": "buf lint",
"build": "yarn library build",
"prepack": "yarn run build",
"postpack": "rm -rf dist"
"postpack": "rm -rf dist",
"proto:generate": "PATH=$PATH:$(yarn bin protoc-gen-ts) buf generate",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

скрипты работают? Помню у них cli менялось

"proto:lint": "buf lint"
},
"dependencies": {
"@grpc/grpc-js": "1.5.5",
"google-protobuf": "^3.17.3"
"@grpc/grpc-js": "1.12.2",
"google-protobuf": "3.21.4"
},
"devDependencies": {
"grpc_tools_node_protoc_ts": "^5.3.0"
"@types/google-protobuf": "3.15.12",
"grpc_tools_node_protoc_ts": "5.3.3"
},
"publishConfig": {
"main": "dist/index.js",
"typings": "dist/index.d.ts"
}
},
"typecheckSkipLibCheck": true
}
Loading