Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve logs in the login command #1028

Merged
merged 47 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
55e37d3
Add login and logout commands
frandiox Jun 22, 2023
ce60db2
Refactor graphql client and requests, add unit tests
frandiox Jun 22, 2023
0e97f82
Update shopify-config methods and tests
frandiox Jun 22, 2023
379d053
Update renderErrors to use cli Command
frandiox Jun 22, 2023
7260146
Rework env-pull to call login and remove silent param
frandiox Jun 22, 2023
07c263a
Rework link command to call login and remove --shop flag
frandiox Jun 22, 2023
43e16a2
Update list command to call login and remove --shop flag
frandiox Jun 22, 2023
fb3d5d6
Update env-list command to call login and remove --shop flag
frandiox Jun 22, 2023
120250c
Oclif manifest
frandiox Jun 22, 2023
c0b93b0
Cleanup
frandiox Jun 22, 2023
2824d3b
Rework log replacer
frandiox Jun 22, 2023
c7937b6
Mute cli-kit auth logs
frandiox Jun 22, 2023
e3155d2
Fix mock
frandiox Jun 22, 2023
26ef7a9
Update cli-kit version
frandiox Jun 22, 2023
4ba3a3c
Add GraphQL schema generator for local development
frandiox Jun 22, 2023
b12d0a4
Use business platform login to render a list of shops
frandiox Jun 22, 2023
db61818
Improve login logs
frandiox Jun 22, 2023
f714a46
Merge main branch
frandiox Jun 23, 2023
e3f79d6
Fix tests
frandiox Jun 23, 2023
3f3b41e
Minor changes
frandiox Jun 23, 2023
014c292
Merge branch '2023-04' into fd-login-command
frandiox Jun 26, 2023
6c272be
Update package-lock
frandiox Jun 26, 2023
e7d9fa7
Merge branch 'fd-login-command' into fd-login-command-improved
frandiox Jun 26, 2023
f56cd57
Apply suggestions from code review
frandiox Jun 26, 2023
3eded5b
Merge branch 'fd-login-command-improved' into fd-login-logs
frandiox Jun 26, 2023
c3818c4
Change link color
frandiox Jun 26, 2023
35315eb
Skip writing config when no directory is passed to login
frandiox Jun 27, 2023
7853bc2
Improve unit tests
frandiox Jun 28, 2023
c8ce208
Changesets
frandiox Jun 28, 2023
064fcb1
Merge branch '2023-04' into fd-login-command
frandiox Jun 28, 2023
eee603e
Merge branch 'fd-login-command' into fd-login-command-improved
frandiox Jun 28, 2023
f0f048d
Refactor to getUserAccount and add tests
frandiox Jun 28, 2023
fcdd58c
Store shopName and email in local config
frandiox Jun 28, 2023
8ab2c62
Show shopName and email after login
frandiox Jun 28, 2023
83d9002
Force prompt during login when not passing --shop flag
frandiox Jun 28, 2023
089ff01
Fix tests
frandiox Jun 28, 2023
19aa4a1
Merge branch 'fd-login-command-improved' into fd-login-logs
frandiox Jun 28, 2023
ccc358d
Only show loader after pressing a key
frandiox Jun 28, 2023
02cbddd
Show short version of link in terminal
frandiox Jun 28, 2023
2b1cdee
Merge branch '2023-04' into fd-login-command-improved
frandiox Jun 28, 2023
8b55477
Update cli-kit version and its deps
frandiox Jun 28, 2023
0d66f65
Cleanup
frandiox Jun 28, 2023
db159ad
Merge branch 'fd-login-command-improved' into fd-login-logs
frandiox Jun 28, 2023
638cffa
Update package-lock
frandiox Jun 28, 2023
8e69279
Merge branch '2023-04' into fd-login-logs
frandiox Jun 29, 2023
814feda
Merge branch '2023-04' into fd-login-logs
frandiox Jun 30, 2023
22f3b5d
Remove duplicated code chunk
frandiox Jun 30, 2023
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
244 changes: 166 additions & 78 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@shopify/cli-kit": "3.47.0",
"@shopify/hydrogen-codegen": "^0.0.2",
"@shopify/mini-oxygen": "^1.6.0",
"ansi-escapes": "^6.2.0",
"diff": "^5.1.0",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
Expand Down
Loading