Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/fresh-dogs-configure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@cloudflare/autoconfig": minor
"wrangler": patch
---

Prepare autoconfig for multiple configuration targets

Add target-specific configuration output while preserving Wrangler's existing setup and deployment behavior.
92 changes: 0 additions & 92 deletions .github/workflows/changeset-review.yml

This file was deleted.

259 changes: 0 additions & 259 deletions .github/workflows/triage-issue.yml

This file was deleted.

1 change: 1 addition & 0 deletions packages/autoconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
},
"dependencies": {
"@cloudflare/cli-shared-helpers": "workspace:*",
"@cloudflare/config": "workspace:*",
"@cloudflare/workers-utils": "workspace:*"
},
"devDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/autoconfig/scripts/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ export const EXTERNAL_DEPENDENCIES = [
// Published workspace packages that consumers must install alongside autoconfig.
// They are kept external to share a single copy with wrangler and other SDK tools.
"@cloudflare/cli-shared-helpers",
// Its public types are exposed by autoconfig and must resolve for consumers.
"@cloudflare/config",
"@cloudflare/workers-utils",
];
2 changes: 2 additions & 0 deletions packages/autoconfig/src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export interface AutoConfigLogger {
error(...args: unknown[]): void;
}

export type AutoConfigTarget = "cf" | "wrangler";

/**
* Dialog interface for interactive prompts.
* Callers provide their own implementation (e.g., using `prompts`, `inquirer`, or a custom UI).
Expand Down
Loading
Loading