Skip to content

Commit

Permalink
Merge pull request #4416 from Shopify/extension-only-verbage
Browse files Browse the repository at this point in the history
Use extension only verbage to match shopify.dev docs
  • Loading branch information
byrichardpowell committed Sep 9, 2024
2 parents 2359029 + cf8e1cf commit 32b2b17
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export type Scalars = {
PropertyPublicID: {input: string; output: string}
/** The ID for a Role. */
RoleID: {input: any; output: any}
/** The ID for a Shop. */
ShopID: {input: any; output: any}
/** The ID for a ShopifyShop. */
ShopifyShopID: {input: any; output: any}
/** The ID for a StoreAdditionRequest. */
Expand Down
8 changes: 4 additions & 4 deletions packages/create-app/src/prompts/init.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ describe('init', () => {
// Then
expect(renderSelectPrompt).toHaveBeenCalledWith({
choices: [
{label: 'Start with Remix (recommended)', value: 'remix'},
{label: 'Start by adding your first extension', value: 'none'},
{label: 'Build a Remix app (recommended)', value: 'remix'},
{label: 'Build an extension-only app', value: 'none'},
],
message: 'Get started building your app:',
defaultValue: 'remix',
Expand All @@ -97,8 +97,8 @@ describe('init', () => {
// Then
expect(renderSelectPrompt).toHaveBeenCalledWith({
choices: [
{label: 'Start with Remix (recommended)', value: 'remix'},
{label: 'Start by adding your first extension', value: 'none'},
{label: 'Build a Remix app (recommended)', value: 'remix'},
{label: 'Build an extension-only app', value: 'none'},
],
message: 'Get started building your app:',
defaultValue: 'remix',
Expand Down
4 changes: 2 additions & 2 deletions packages/create-app/src/prompts/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface Template {
export const templates = {
remix: {
url: 'https://github.com/Shopify/shopify-app-template-remix',
label: 'Start with Remix (recommended)',
label: 'Build a Remix app (recommended)',
visible: true,
branches: {
prompt: 'For your Remix template, which language do you want?',
Expand All @@ -48,7 +48,7 @@ export const templates = {
} as Template,
none: {
url: 'https://github.com/Shopify/shopify-app-template-none',
label: 'Start by adding your first extension',
label: 'Build an extension-only app',
visible: true,
} as Template,
node: {
Expand Down

0 comments on commit 32b2b17

Please sign in to comment.