This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
forked from Shopify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Shopify:main' into main
- Loading branch information
Showing
57 changed files
with
1,529 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@shopify/theme': patch | ||
--- | ||
|
||
Fix session refresh for theme dev without password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@shopify/app': patch | ||
--- | ||
|
||
Skip .DS_Dtore files when the theme app extension bundle content is created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@shopify/app': patch | ||
--- | ||
|
||
Allow theme app extensions to exclude files from deploying via `.shopifyignore` file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@shopify/theme': patch | ||
--- | ||
|
||
Fix clean login on theme dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@shopify/cli': minor | ||
--- | ||
|
||
Updated app generate schema to output to either to schema.graphql (by default) or stdout with --stdout flag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@shopify/cli-kit': patch | ||
'@shopify/app': patch | ||
--- | ||
|
||
Add React deduplication plugin for ESBuild & extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import {appFlags} from '../../../flags.js' | ||
import Command from '../../../utilities/app-command.js' | ||
import {globalFlags} from '@shopify/cli-kit/node/cli' | ||
|
||
export default class ConfigLink extends Command { | ||
static hidden = true | ||
|
||
static description = "Fetch your app's config from the Partner Dashboard." | ||
|
||
static flags = { | ||
...globalFlags, | ||
...appFlags, | ||
} | ||
|
||
public async run(): Promise<void> { | ||
const {flags} = await this.parse(ConfigLink) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import {appFlags} from '../../../flags.js' | ||
import Command from '../../../utilities/app-command.js' | ||
import {globalFlags} from '@shopify/cli-kit/node/cli' | ||
|
||
export default class ConfigPush extends Command { | ||
static hidden = true | ||
|
||
static description = "Push your app's config to the Partner Dashboard." | ||
|
||
static flags = { | ||
...globalFlags, | ||
...appFlags, | ||
} | ||
|
||
public async run(): Promise<void> { | ||
const {flags} = await this.parse(ConfigPush) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import {appFlags} from '../../../flags.js' | ||
import Command from '../../../utilities/app-command.js' | ||
import {globalFlags} from '@shopify/cli-kit/node/cli' | ||
|
||
export default class ConfigUse extends Command { | ||
static hidden = true | ||
|
||
static description = 'Set a particular configuration to use.' | ||
|
||
static flags = { | ||
...globalFlags, | ||
...appFlags, | ||
} | ||
|
||
public async run(): Promise<void> { | ||
const {flags} = await this.parse(ConfigUse) | ||
} | ||
} |
Oops, something went wrong.