Package export using drush
To export Site Studio packages and dependencies to your sync directory, use the following Drush command:
$ drush sync:export
This command has the following options:
- --filename-prefix[=FILENAME-PREFIX] The export filename prefix that will output a file like: [prefix]-package.yml_
By default this will create a file called: [your-site--name].package.yml_
in the site_studio_sync directory configured in your settings.php. The file has an underscore after the file extension so that Drupal core config import/export doesn't detect and process it.
Example
$ drush sync:export --filename-prefix=myfilenamehere
This will create a file called: myfilenamehere.package.yml_
in your sync directory.