create-svc 0.1.65 → 0.1.66
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
CHANGED
package/src/scaffold.test.ts
CHANGED
|
@@ -194,6 +194,8 @@ test("scaffolds all runtime/framework variants with shared cloudrun config", asy
|
|
|
194
194
|
expect(goMod).toContain("connectrpc.com/connect");
|
|
195
195
|
expect(mainGo).toContain("NewWaitlistService");
|
|
196
196
|
expect(mainGo).toContain("WaitlistServiceName");
|
|
197
|
+
const bufConfig = await Bun.file(join(generatedRoot, "buf.yaml")).text();
|
|
198
|
+
expect(bufConfig).toContain("name: buf.build/anmho/dns-api");
|
|
197
199
|
} else {
|
|
198
200
|
expect(goMod).not.toContain("connectrpc.com/connect");
|
|
199
201
|
expect(mainGo).toContain("NewWaitlistService");
|