@towns-protocol/proto 0.0.429 → 0.0.431
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@towns-protocol/proto",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.431",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
"buf:clean": "rm -rf ./src/gen/*",
|
|
9
9
|
"buf:generate": "cd ../.. && buf generate --template packages/proto/buf.gen.yaml --path protocol/protocol.proto --path protocol/payloads.proto --path packages/proto/internal.proto --path protocol/notifications.proto --path protocol/auth.proto --path protocol/apps.proto",
|
|
10
10
|
"buf:lint": "cd ../.. && buf lint --path protocol/protocol.proto --path protocol/payloads.proto --path packages/proto/internal.proto --path protocol/notifications.proto --path protocol/auth.proto --path protocol/apps.proto",
|
|
11
|
-
"build": "
|
|
12
|
-
"cb": "
|
|
13
|
-
"clean": "
|
|
11
|
+
"build": "bun run buf:generate && tsc",
|
|
12
|
+
"cb": "bun run clean && bun run build",
|
|
13
|
+
"clean": "bun run buf:clean && rm -rf ./dist",
|
|
14
14
|
"test": "vitest run",
|
|
15
|
-
"test:ci": "
|
|
15
|
+
"test:ci": "bun run test",
|
|
16
16
|
"test:watch": "vitest --watch",
|
|
17
|
-
"watch": "
|
|
18
|
-
"watch:go": "
|
|
17
|
+
"watch": "bun scripts/watch_proto_files.cjs",
|
|
18
|
+
"watch:go": "bun scripts/watch_proto_files_go.cjs"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@bufbuild/protobuf": "^2.9.0"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "02cd0a82c6fe5e92ce21456e2aa910978b46a1bf"
|
|
40
40
|
}
|