-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'move-migrate-to-cli' into 'main'
migration to CLI See merge request anagolay/anagolay-js!61
- Loading branch information
Showing
38 changed files
with
209 additions
and
735 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
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
10 changes: 0 additions & 10 deletions
10
.../changes/@anagolay/api/108-implement-home-page-for-the-anagolay-app_2022-10-27-15-08.json
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...nagolay/api/110-change-how-the-signature-is-done-for-the-statements_2022-10-10-14-41.json
This file was deleted.
Oops, something went wrong.
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
10 changes: 10 additions & 0 deletions
10
common/changes/@anagolay/cli/move-migrate-to-cli_2022-11-26-09-21.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@anagolay/cli", | ||
"comment": "add migration cli ", | ||
"type": "minor" | ||
} | ||
], | ||
"packageName": "@anagolay/cli" | ||
} |
File renamed without changes.
10 changes: 0 additions & 10 deletions
10
...changes/@anagolay/util/108-implement-home-page-for-the-anagolay-app_2022-11-01-09-48.json
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
common/changes/@anagolay/util/109-remove-anagolay-dev-app_2022-10-03-11-26.json
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...agolay/util/110-change-how-the-signature-is-done-for-the-statements_2022-10-10-14-41.json
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. | ||
{ | ||
"pnpmShrinkwrapHash": "46569f301d34ed2cfd9367831570f292a1228bf6", | ||
"pnpmShrinkwrapHash": "916cdca97120aaf627d1b233815e98c1c70c512b", | ||
"preferredVersionsHash": "e8a150a1598e394910b7d0337b3c1d7a488e8a77" | ||
} |
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
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,20 @@ | ||
import { Command } from 'commander'; | ||
|
||
import operations from './subCommands/operations'; | ||
|
||
/** | ||
* Workflow main Command | ||
* | ||
* @remarks Usage `anagolay help workflow` | ||
* | ||
* @public | ||
*/ | ||
export default async function makeCommand(): Promise<Command> { | ||
const cmd = new Command('migrate'); | ||
cmd.description('Migration commands, useful when you want to pull something from one chain to another'); | ||
|
||
// add subcommands | ||
cmd.addCommand(await operations()); | ||
|
||
return cmd; | ||
} |
Oops, something went wrong.