diff options
author | 2024-03-13 16:17:17 -0700 | |
---|---|---|
committer | 2024-03-13 16:17:17 -0700 | |
commit | 4e24628aacc556515b27d0c04361df1526ae778f (patch) | |
tree | 2f834ea808ecf1a8b1811155abf693c4a6b34390 | |
parent | 9ef310601cf13086bb4556f8b9e0a4d31c66005c (diff) | |
download | astro-4e24628aacc556515b27d0c04361df1526ae778f.tar.gz astro-4e24628aacc556515b27d0c04361df1526ae778f.tar.zst astro-4e24628aacc556515b27d0c04361df1526ae778f.zip |
add missing regions to link command (#10432)
-rw-r--r-- | .changeset/empty-ants-crash.md | 5 | ||||
-rw-r--r-- | packages/db/src/core/cli/commands/link/index.ts | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.changeset/empty-ants-crash.md b/.changeset/empty-ants-crash.md new file mode 100644 index 000000000..f7fd7fced --- /dev/null +++ b/.changeset/empty-ants-crash.md @@ -0,0 +1,5 @@ +--- +"@astrojs/db": patch +--- + +Add all regions to the link command diff --git a/packages/db/src/core/cli/commands/link/index.ts b/packages/db/src/core/cli/commands/link/index.ts index 905d2095e..c65f6ef65 100644 --- a/packages/db/src/core/cli/commands/link/index.ts +++ b/packages/db/src/core/cli/commands/link/index.ts @@ -238,6 +238,10 @@ export async function promptNewProjectRegion(): Promise<string> { choices: [ { title: 'North America (East)', value: 'NorthAmericaEast' }, { title: 'North America (West)', value: 'NorthAmericaWest' }, + { title: 'Europe (Amsterdam)', value: 'EuropeCentral' }, + { title: 'South America (Brazil)', value: 'SouthAmericaEast' }, + { title: 'Asia (India)', value: 'AsiaSouth' }, + { title: 'Asia (Japan)', value: 'AsiaNorthEast' }, ], initial: 0, }); |