Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit 7e6f025

Browse files
chore: generate TypeScript REST SDK v0.3.4
1 parent 8d66d22 commit 7e6f025

3 files changed

Lines changed: 33 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish @mesadev/rest to npm
2+
3+
on:
4+
push:
5+
tags: ["v*"]
6+
7+
permissions:
8+
contents: read
9+
id-token: write
10+
11+
jobs:
12+
publish:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
17+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
18+
with:
19+
node-version: "24"
20+
registry-url: "https://registry.npmjs.org"
21+
22+
- name: Install dependencies
23+
run: npm install
24+
25+
- name: Typecheck
26+
run: npx tsc --noEmit
27+
28+
- name: Build
29+
run: npm run build
30+
31+
- name: Publish
32+
run: npm publish --provenance --access public

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"build": "tsc -p tsconfig.json",
3030
"typecheck": "tsc --noEmit -p tsconfig.json",
3131
"lint": "biome check src package.json README.md",
32-
"test": "bun test",
3332
"sync": "../../../../bazel.sh run --config=local '--@com_google_protobuf//bazel/toolchains:allow_nonstandard_protoc' //packages/sdk/rest/ts:update_typescript_rest",
3433
"prepublishOnly": "bun run build"
3534
},

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"noUnusedLocals": false,
1414
"noUnusedParameters": false,
1515
"noErrorTruncation": true,
16+
"composite": true,
1617
"declaration": true,
1718
"declarationMap": true,
1819
"sourceMap": true,

0 commit comments

Comments
 (0)