Skip to content

Commit

Permalink
bump trpc-cli version
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkal committed Sep 15, 2024
1 parent 7b42109 commit 3742fc3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 33 deletions.
2 changes: 1 addition & 1 deletion packages/typegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"neverthrow": "^7.1.0",
"pgsql-ast-parser": "^11.1.0",
"pluralize": "^8.0.0",
"trpc-cli": "https://pkg.pr.new/mmkal/trpc-cli@e57287f",
"trpc-cli": "https://pkg.pr.new/mmkal/trpc-cli@38",
"zod": "^3.23.8"
},
"devDependencies": {
Expand Down
38 changes: 9 additions & 29 deletions pnpm-lock.yaml

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

8 changes: 5 additions & 3 deletions scripts/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,10 @@ const main = async () => {
const {stdout: uncommitedChanges} = await execa('git', ['status', '--porcelain', '--', '.'], {
cwd: pkg.path,
})
const commitBullets = stdout.split('\n').filter(Boolean).map(line => `- ${line}`)
const commitBullets = stdout
.split('\n')
.filter(Boolean)
.map(line => `- ${line}`)
const sections = [
commitBullets.length && '<h3>Commits</h3>\n',
...commitBullets,
Expand Down Expand Up @@ -496,8 +499,7 @@ const main = async () => {
.split('\n')
.filter(line => !line.match(/^<!-- data-change-type=".*" -->$/))
.map(line => (line.trim() ? `${line}` : line))
.join('\n')
|| `${bumpedDeps.updated[dep]} (Version bump)`,
.join('\n') || `${bumpedDeps.updated[dep]} (Version bump)`,
'</blockquote>',
'</details>',
].join('\n')
Expand Down

0 comments on commit 3742fc3

Please sign in to comment.