-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feat/tsemach/add commands for manifest management #110
base: master
Are you sure you want to change the base?
Feat/tsemach/add commands for manifest management #110
Conversation
# Conflicts: # yarn.lock
# Conflicts: # yarn.lock
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks amazing 🚀
See my comments please
return userChoice === CREATE_NEW_VERSION; | ||
}; | ||
|
||
export const uploadZippedManifest = async ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same question about zip VS normal file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The manifest endpoints support only zip format (in oder to support in feature dependencies and assets such as images etc...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work
…porting-app-manifest # Conflicts: # package.json # src/consts/urls.ts
Summary
Introduced two new beta commands for easier app management:
manifest:export
: Export an app manifest by specifying the app ID and app version ID. The manifest ZIP file will be downloaded to your current working directory.manifest:import
: Import a manifest file by providing the file path. The file will be zipped and uploaded to either an existing app or a new app, as specified.Purpose
These commands simplify app configuration management, enabling developers to easily export and import app setups for improved workflows and version control.
Notes