You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As indicated in the issue #108 the workspaces system would become deprecated so to facilitate the adoption of the new building system we would have to have a command that allows us to automate this migration, this command should also provide for future migrations, an implementation attempt could be
use clap::*;#[derive(ValueEnum)]enumMigrationStrategy{V1ToV2,// ...}#[derive(Debug,Parser)]pubstructOpts{#[clap(subcommand)]pubcommand:Command,}#[derive(Debug,Parser)]pubenumCommand{Migration{#[clap(long, short, default_value = "v1tov2")]strategy:Option<MigrationStrategy>,}}
The files related to this change are in the cli and the issue depends on the global implementation determined for the new build system
Important
All changes should PR to the runtime branch and you can check the differences here
The text was updated successfully, but these errors were encountered:
As indicated in the issue #108 the workspaces system would become deprecated so to facilitate the adoption of the new building system we would have to have a command that allows us to automate this migration, this command should also provide for future migrations, an implementation attempt could be
The files related to this change are in the cli and the issue depends on the global implementation determined for the new build system
Important
All changes should PR to the runtime branch and you can check the differences here
The text was updated successfully, but these errors were encountered: