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

Commit 5f2c8bf

Browse files
fix: fix package.json for renovate (#544)
1 parent e2976e1 commit 5f2c8bf

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

baselines/disable-packing-test/protos/google/showcase/v1beta1/identity.proto.baseline

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,24 +102,23 @@ message User {
102102
(google.api.field_behavior) = OUTPUT_ONLY
103103
];
104104

105-
// Typescript generator doe not support proto3 optional fields
106105
// The age of the use in years.
107-
// optional int32 age = 6;
106+
optional int32 age = 6;
108107

109108
// The height of the user in feet.
110-
// optional double height_feet = 7;
109+
optional double height_feet = 7;
111110

112111
// The nickname of the user.
113112
//
114113
// (-- aip.dev/not-precedent: An empty string is a valid nickname.
115114
// Ordinarily, proto3_optional should not be used on a `string` field. --)
116-
// optional string nickname = 8;
115+
optional string nickname = 8;
117116

118117
// Enables the receiving of notifications. The default is true if unset.
119118
//
120119
// (-- aip.dev/not-precedent: The default for the feature is true.
121120
// Ordinarily, the default for a `bool` field should be false. --)
122-
// optional bool enable_notifications = 9;
121+
optional bool enable_notifications = 9;
123122
}
124123

125124
// The request message for the google.showcase.v1beta1.Identity\CreateUser

templates/typescript_gapic/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@
2020
"google cloud",
2121
"cloud",
2222
"google {{ api.naming.productName.toCamelCase() }}",
23-
"{{ api.naming.productName.toCamelCase() }}"
24-
{%- for words in api.uniqKeywords %}
25-
,"{{ words }}"
26-
{%- endfor %}
23+
"{{ api.naming.productName.toCamelCase() }}",
24+
"{{ api.uniqKeywords.join('\",\"') | safe }}"
2725
],
2826
"scripts": {
2927
"clean": "gts clean",

0 commit comments

Comments
 (0)