compressCurrentProjectCommand method
This command is used to compress the current project
Implementation
List<String> compressCurrentProjectCommand({
required String compressedFileName,
}) =>
compressCommand(
compressedFileName: compressedFileName,
exclude: [
'.dart_tool',
'.idea',
'android',
'build',
'ios',
'macos',
'test',
'web',
'windows',
],
);