compressCurrentProjectCommand method

List<String> compressCurrentProjectCommand({
  1. required String compressedFileName,
})

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',
      ],
    );