create-svc 0.1.60 → 0.1.61

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-svc",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "description": "Local microservice bootstrap CLI for Cloud Run and Workers services with Neon-backed data.",
5
5
  "module": "index.ts",
6
6
  "type": "module",
@@ -22,9 +22,7 @@ gen:
22
22
 
23
23
  lint:
24
24
  go vet ./...
25
- @bun run ./scripts/ensure-local-db.ts
26
- @bun run ./scripts/wait-for-db.ts
27
- @$(WITH_ENV) $(ATLAS) migrate lint --env local --latest 1
25
+ $(ATLAS) migrate validate --env local
28
26
 
29
27
  test:
30
28
  bun test ./test
@@ -23,9 +23,7 @@ gen:
23
23
  lint:
24
24
  go vet ./...
25
25
  buf lint
26
- @bun run ./scripts/ensure-local-db.ts
27
- @bun run ./scripts/wait-for-db.ts
28
- @$(WITH_ENV) $(ATLAS) migrate lint --env local --latest 1
26
+ $(ATLAS) migrate validate --env local
29
27
 
30
28
  test:
31
29
  bun test ./test
@@ -4,6 +4,9 @@ modules:
4
4
  lint:
5
5
  use:
6
6
  - STANDARD
7
+ except:
8
+ - RPC_REQUEST_RESPONSE_UNIQUE
9
+ - RPC_RESPONSE_STANDARD_NAME
7
10
  breaking:
8
11
  use:
9
12
  - FILE