├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yaml └── workflows │ ├── ci.yaml │ ├── mason.yaml │ ├── mason_api.yaml │ ├── mason_cli.yaml │ ├── mason_logger.yaml │ └── vscode.yaml ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── analysis_options.yaml ├── assets ├── mason_demo.gif ├── mason_full.png └── mason_logo.png ├── bricks ├── app_icon │ ├── __brick__ │ │ └── {{% url %}} │ └── brick.yaml ├── bio │ ├── __brick__ │ │ └── ABOUT.md │ └── brick.yaml ├── documentation │ ├── __brick__ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ └── README.md │ └── brick.yaml ├── favorite_color │ ├── __brick__ │ │ └── color.md │ └── brick.yaml ├── favorite_languages │ ├── __brick__ │ │ └── languages.md │ └── brick.yaml ├── flavors │ ├── __brick__ │ │ ├── README.md │ │ └── main_{{#flavors}}{{{.}}}{{ │ │ │ └── flavors}}.dart │ └── brick.yaml ├── greeting │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __brick__ │ │ └── GREETINGS.md │ └── brick.yaml ├── hello │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __brick__ │ │ └── HELLO.md │ └── brick.yaml ├── hello_world │ ├── __brick__ │ │ ├── HELLO.md │ │ ├── {{~ common_footer.md }} │ │ └── {{~ common_header.md }} │ └── brick.yaml ├── hooks │ ├── __brick__ │ │ └── hooks.md │ ├── brick.yaml │ └── hooks │ │ ├── post_gen.dart │ │ ├── pre_gen.dart │ │ └── pubspec.yaml ├── legacy │ ├── __brick__ │ │ └── GREETINGS.md │ └── brick.yaml ├── photos │ ├── __brick__ │ │ └── image.png │ └── brick.yaml ├── plugin │ ├── __brick__ │ │ ├── README.md │ │ ├── example │ │ │ ├── {{#android}}android.dart{{ │ │ │ │ └── android}} │ │ │ └── {{#ios}}ios.dart{{ │ │ │ │ └── ios}} │ │ ├── tests │ │ │ ├── {{#android}}android_tests.dart{{ │ │ │ │ └── android}} │ │ │ └── {{#ios}}ios_tests.dart{{ │ │ │ │ └── ios}} │ │ ├── {{#android}}android{{ │ │ │ └── android}} │ │ │ │ └── README.md │ │ ├── {{#android}}build.gradle{{ │ │ │ └── android}} │ │ ├── {{#ios}}Podfile{{ │ │ │ └── ios}} │ │ └── {{#ios}}ios{{ │ │ │ └── ios}} │ │ │ └── README.md │ └── brick.yaml ├── random_color │ ├── __brick__ │ │ └── color.md │ ├── brick.yaml │ └── hooks │ │ ├── post_gen.dart │ │ ├── pre_gen.dart │ │ └── pubspec.yaml ├── simple │ ├── __brick__ │ │ └── HELLO.md │ └── brick.yaml ├── todos │ ├── __brick__ │ │ ├── todos.md │ │ └── todos │ │ │ ├── {{#todos}}todo_{{#upperCase}}{{{todo}}}{{ │ │ │ └── upperCase}}_todo.md{{ │ │ │ │ └── todos}} │ │ │ └── {{#todos}}{{{todo}}}{{ │ │ │ └── todos}} │ │ │ └── developers │ │ │ └── {{#developers}}{{{name}}}{{ │ │ │ └── developers}} │ │ │ └── info.md │ └── brick.yaml └── widget │ ├── __brick__ │ └── {{name.snakeCase()}}.dart │ └── brick.yaml ├── cspell.config.yaml ├── extensions └── vscode │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── assets │ └── logo.png │ ├── package-lock.json │ ├── package.json │ ├── schema │ ├── brick.yaml.schema.json │ └── mason.yaml.schema.json │ ├── src │ ├── commands │ │ ├── add-brick.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── make-brick.ts │ │ ├── new-brick.ts │ │ └── remove-brick.ts │ ├── events │ │ ├── index.ts │ │ └── on-file-saved.ts │ ├── extension.ts │ ├── mason │ │ ├── get-brick-yaml.ts │ │ ├── index.ts │ │ ├── is-mason-installed.ts │ │ ├── mason-add.ts │ │ ├── mason-exec.ts │ │ ├── mason-get.ts │ │ ├── mason-init.ts │ │ ├── mason-make.ts │ │ ├── mason-new.ts │ │ └── mason-remove.ts │ └── utils │ │ ├── exec.ts │ │ ├── index.ts │ │ └── prompt-for-target-directory.ts │ ├── tsconfig.json │ └── webpack.config.js ├── packages ├── mason │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── build.yaml │ ├── coverage_badge.svg │ ├── example │ │ └── main.dart │ ├── lib │ │ ├── mason.dart │ │ └── src │ │ │ ├── brick.dart │ │ │ ├── brick_compatibility.dart │ │ │ ├── brick_yaml.dart │ │ │ ├── brick_yaml.g.dart │ │ │ ├── bricks_json.dart │ │ │ ├── bundler.dart │ │ │ ├── exception.dart │ │ │ ├── generator.dart │ │ │ ├── git.dart │ │ │ ├── hooks.dart │ │ │ ├── mason_bundle.dart │ │ │ ├── mason_bundle.g.dart │ │ │ ├── mason_lock_json.dart │ │ │ ├── mason_lock_json.g.dart │ │ │ ├── mason_yaml.dart │ │ │ ├── mason_yaml.g.dart │ │ │ ├── path.dart │ │ │ ├── recase.dart │ │ │ ├── render.dart │ │ │ ├── string_case_extensions.dart │ │ │ ├── version.dart │ │ │ └── yaml_encode.dart │ ├── pubspec.yaml │ ├── pubspec_overrides.yaml │ └── test │ │ ├── bricks │ │ ├── custom_registry │ │ │ └── brick.yaml │ │ ├── loop │ │ │ ├── __brick__ │ │ │ │ └── main_{{#values}}{{{.}}}{{ │ │ │ │ │ └── values}}.txt │ │ │ └── brick.yaml │ │ ├── nested_conditional │ │ │ ├── __brick__ │ │ │ │ └── {{#generate}}{{#snakeCase}}{{{name}}}{{ │ │ │ │ │ └── snakeCase}}.txt{{ │ │ │ │ │ └── generate}} │ │ │ └── brick.yaml │ │ └── no_registry │ │ │ └── brick.yaml │ │ ├── bundles │ │ ├── bundles.dart │ │ ├── greeting_bundle.dart │ │ ├── hooks_bundle.dart │ │ ├── photos_bundle.dart │ │ └── relative_imports_bundle.dart │ │ ├── fixtures │ │ ├── basic │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── post_gen.dart │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── compile_exception │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── dependency_install_failure │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── empty │ │ │ └── brick.yaml │ │ ├── execution_exception │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── hooks │ │ │ ├── __brick__ │ │ │ │ └── hooks.md │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── post_gen.dart │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── long_run │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── malformed_pubspec │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── missing_run │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── programmatic_usage │ │ │ └── main.dart │ │ ├── relative_imports │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── legacy │ │ │ │ ├── post_gen.dill │ │ │ │ └── pre_gen.dill │ │ │ │ ├── post_gen.dart │ │ │ │ ├── pre_gen.dart │ │ │ │ ├── pubspec.yaml │ │ │ │ └── src │ │ │ │ └── main.dart │ │ ├── run_exception │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ └── unicode_hook │ │ │ ├── __brick__ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ ├── pre_gen.dart │ │ │ └── pubspec.yaml │ │ └── src │ │ ├── brick_compatibility_test.dart │ │ ├── brick_yaml_test.dart │ │ ├── bricks_json_test.dart │ │ ├── bundler_test.dart │ │ ├── exception_test.dart │ │ ├── generator_test.dart │ │ ├── git_test.dart │ │ ├── hooks_test.dart │ │ ├── mason_bundle_test.dart │ │ ├── mason_lock_json_test.dart │ │ ├── mason_yaml_test.dart │ │ ├── render_test.dart │ │ ├── string_case_extensions_test.dart │ │ └── yaml_encode_test.dart ├── mason_api │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── build.yaml │ ├── coverage_badge.svg │ ├── example │ │ └── main.dart │ ├── lib │ │ ├── mason_api.dart │ │ └── src │ │ │ ├── jwt_decode.dart │ │ │ ├── mason_api.dart │ │ │ └── models │ │ │ ├── brick_search_result.dart │ │ │ ├── brick_search_result.g.dart │ │ │ ├── credentials.dart │ │ │ ├── credentials.g.dart │ │ │ ├── error_response.dart │ │ │ ├── error_response.g.dart │ │ │ ├── models.dart │ │ │ └── user.dart │ ├── pubspec.yaml │ └── test │ │ └── src │ │ ├── jwt_decode_test.dart │ │ └── mason_api_test.dart ├── mason_cli │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── README.zh.md │ ├── analysis_options.yaml │ ├── bin │ │ └── mason.dart │ ├── coverage_badge.svg │ ├── dart_test.yaml │ ├── example │ │ ├── README.md │ │ ├── mason.yaml │ │ └── todos.json │ ├── lib │ │ ├── mason_cli.dart │ │ └── src │ │ │ ├── command.dart │ │ │ ├── command_runner.dart │ │ │ ├── commands │ │ │ ├── add.dart │ │ │ ├── bundle.dart │ │ │ ├── cache.dart │ │ │ ├── commands.dart │ │ │ ├── get.dart │ │ │ ├── init.dart │ │ │ ├── list.dart │ │ │ ├── login.dart │ │ │ ├── logout.dart │ │ │ ├── make.dart │ │ │ ├── new.dart │ │ │ ├── publish.dart │ │ │ ├── remove.dart │ │ │ ├── search.dart │ │ │ ├── unbundle.dart │ │ │ ├── update.dart │ │ │ └── upgrade.dart │ │ │ ├── install_brick.dart │ │ │ └── version.dart │ ├── pubspec.yaml │ ├── pubspec_overrides.yaml │ └── test │ │ ├── bricks │ │ ├── array_no_choices │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ └── brick.yaml │ │ ├── compilation_error │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ ├── brick.yaml │ │ │ └── hooks │ │ │ │ ├── pre_gen.dart │ │ │ │ └── pubspec.yaml │ │ ├── custom_registry │ │ │ └── brick.yaml │ │ ├── enum_no_choices │ │ │ ├── __brick__ │ │ │ │ └── .gitkeep │ │ │ └── brick.yaml │ │ ├── invalid_registry │ │ │ └── brick.yaml │ │ └── no_registry │ │ │ └── brick.yaml │ │ ├── bundles │ │ ├── bundles.dart │ │ ├── greeting.bundle │ │ ├── greeting_bundle.dart │ │ ├── hooks_bundle.dart │ │ └── legacy_greeting_bundle.dart │ │ ├── commands │ │ ├── add_test.dart │ │ ├── bundle_test.dart │ │ ├── cache_test.dart │ │ ├── get_test.dart │ │ ├── init_test.dart │ │ ├── list_test.dart │ │ ├── login_test.dart │ │ ├── logout_test.dart │ │ ├── make_test.dart │ │ ├── new_test.dart │ │ ├── publish_test.dart │ │ ├── remove_test.dart │ │ ├── search_test.dart │ │ ├── unbundle_test.dart │ │ ├── update_test.dart │ │ └── upgrade_test.dart │ │ ├── ensure_build_test.dart │ │ ├── fixtures │ │ ├── add │ │ │ ├── greeting │ │ │ │ └── GREETINGS.md │ │ │ └── widget │ │ │ │ └── cat.dart │ │ ├── init │ │ │ └── mason.yaml │ │ ├── install │ │ │ ├── greeting │ │ │ │ └── GREETINGS.md │ │ │ └── widget │ │ │ │ └── cat.dart │ │ ├── make │ │ │ ├── app_icon │ │ │ │ └── c823e53b3a1a7b0d36a9.png │ │ │ ├── bio │ │ │ │ └── ABOUT.md │ │ │ ├── documentation │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ └── README.md │ │ │ ├── favorite_color │ │ │ │ └── color.md │ │ │ ├── favorite_languages │ │ │ │ └── languages.md │ │ │ ├── flavors │ │ │ │ ├── README.md │ │ │ │ ├── main_development.dart │ │ │ │ └── main_production.dart │ │ │ ├── greeting │ │ │ │ └── GREETINGS.md │ │ │ ├── hello_world │ │ │ │ └── HELLO.md │ │ │ ├── hooks │ │ │ │ ├── basic │ │ │ │ │ ├── .post_gen.txt │ │ │ │ │ ├── .pre_gen.txt │ │ │ │ │ └── hooks.md │ │ │ │ └── no_hooks │ │ │ │ │ └── hooks.md │ │ │ ├── mason.yaml │ │ │ ├── output_dir │ │ │ │ └── dir │ │ │ │ │ └── GREETINGS.md │ │ │ ├── plugin │ │ │ │ ├── android │ │ │ │ │ ├── README.md │ │ │ │ │ ├── android │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── example │ │ │ │ │ │ └── android.dart │ │ │ │ │ └── tests │ │ │ │ │ │ └── android_tests.dart │ │ │ │ ├── android_ios │ │ │ │ │ ├── Podfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── android │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── example │ │ │ │ │ │ ├── android.dart │ │ │ │ │ │ └── ios.dart │ │ │ │ │ ├── ios │ │ │ │ │ │ └── README.md │ │ │ │ │ └── tests │ │ │ │ │ │ ├── android_tests.dart │ │ │ │ │ │ └── ios_tests.dart │ │ │ │ ├── empty │ │ │ │ │ └── README.md │ │ │ │ └── ios │ │ │ │ │ ├── Podfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example │ │ │ │ │ └── ios.dart │ │ │ │ │ ├── ios │ │ │ │ │ └── README.md │ │ │ │ │ └── tests │ │ │ │ │ └── ios_tests.dart │ │ │ ├── simple │ │ │ │ └── HELLO.md │ │ │ ├── todos.md │ │ │ ├── todos │ │ │ │ ├── todos.json │ │ │ │ ├── todos.md │ │ │ │ └── todos │ │ │ │ │ ├── Code │ │ │ │ │ └── developers │ │ │ │ │ │ ├── Alex │ │ │ │ │ │ └── info.md │ │ │ │ │ │ ├── Jen │ │ │ │ │ │ └── info.md │ │ │ │ │ │ └── Sam │ │ │ │ │ │ └── info.md │ │ │ │ │ ├── Eat │ │ │ │ │ └── developers │ │ │ │ │ │ ├── Alex │ │ │ │ │ │ └── info.md │ │ │ │ │ │ ├── Jen │ │ │ │ │ │ └── info.md │ │ │ │ │ │ └── Sam │ │ │ │ │ │ └── info.md │ │ │ │ │ ├── Sleep │ │ │ │ │ └── developers │ │ │ │ │ │ ├── Alex │ │ │ │ │ │ └── info.md │ │ │ │ │ │ ├── Jen │ │ │ │ │ │ └── info.md │ │ │ │ │ │ └── Sam │ │ │ │ │ │ └── info.md │ │ │ │ │ ├── todo_CODE_todo.md │ │ │ │ │ ├── todo_EAT_todo.md │ │ │ │ │ └── todo_SLEEP_todo.md │ │ │ └── widget │ │ │ │ └── my_widget.dart │ │ ├── new │ │ │ ├── custom │ │ │ │ └── bricks │ │ │ │ │ └── hello_world │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __brick__ │ │ │ │ │ └── HELLO.md │ │ │ │ │ └── brick.yaml │ │ │ ├── hooks │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── __brick__ │ │ │ │ │ └── HELLO.md │ │ │ │ ├── brick.yaml │ │ │ │ └── hooks │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── post_gen.dart │ │ │ │ │ ├── pre_gen.dart │ │ │ │ │ └── pubspec.yaml │ │ │ └── simple │ │ │ │ └── hello_world │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── __brick__ │ │ │ │ └── HELLO.md │ │ │ │ └── brick.yaml │ │ └── unbundle │ │ │ ├── __brick__ │ │ │ └── GREETINGS.md │ │ │ └── brick.yaml │ │ ├── helpers │ │ ├── directories_deep_equal.dart │ │ ├── helpers.dart │ │ ├── override_print.dart │ │ └── set_up_testing_environment.dart │ │ ├── mason_generator_test.dart │ │ └── src │ │ ├── command_runner_test.dart │ │ ├── command_test.dart │ │ └── install_brick_test.dart └── mason_logger │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── coverage_badge.svg │ ├── example │ └── main.dart │ ├── lib │ ├── mason_logger.dart │ └── src │ │ ├── ansi.dart │ │ ├── ffi │ │ ├── terminal.dart │ │ ├── unix_terminal.dart │ │ └── windows_terminal.dart │ │ ├── io.dart │ │ ├── level.dart │ │ ├── link.dart │ │ ├── mason_logger.dart │ │ ├── progress.dart │ │ └── terminal_overrides.dart │ ├── pubspec.yaml │ └── test │ ├── ci.dart │ ├── fixtures │ └── ci.txt │ └── src │ ├── io_test.dart │ ├── link_test.dart │ ├── mason_logger_test.dart │ ├── progress_test.dart │ └── terminal_overrides_test.dart └── tool └── verify_pub_score.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [felangel] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/mason.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/mason.yaml -------------------------------------------------------------------------------- /.github/workflows/mason_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/mason_api.yaml -------------------------------------------------------------------------------- /.github/workflows/mason_cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/mason_cli.yaml -------------------------------------------------------------------------------- /.github/workflows/mason_logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/mason_logger.yaml -------------------------------------------------------------------------------- /.github/workflows/vscode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.github/workflows/vscode.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/mason_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/assets/mason_demo.gif -------------------------------------------------------------------------------- /assets/mason_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/assets/mason_full.png -------------------------------------------------------------------------------- /assets/mason_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/assets/mason_logo.png -------------------------------------------------------------------------------- /bricks/app_icon/__brick__/{{% url %}}: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bricks/app_icon/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/app_icon/brick.yaml -------------------------------------------------------------------------------- /bricks/bio/__brick__/ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/bio/__brick__/ABOUT.md -------------------------------------------------------------------------------- /bricks/bio/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/bio/brick.yaml -------------------------------------------------------------------------------- /bricks/documentation/__brick__/.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary Files 2 | .tmp/ -------------------------------------------------------------------------------- /bricks/documentation/__brick__/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | - initial release 🎉 -------------------------------------------------------------------------------- /bricks/documentation/__brick__/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/documentation/__brick__/LICENSE -------------------------------------------------------------------------------- /bricks/documentation/__brick__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/documentation/__brick__/README.md -------------------------------------------------------------------------------- /bricks/documentation/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/documentation/brick.yaml -------------------------------------------------------------------------------- /bricks/favorite_color/__brick__/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/favorite_color/__brick__/color.md -------------------------------------------------------------------------------- /bricks/favorite_color/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/favorite_color/brick.yaml -------------------------------------------------------------------------------- /bricks/favorite_languages/__brick__/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/favorite_languages/__brick__/languages.md -------------------------------------------------------------------------------- /bricks/favorite_languages/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/favorite_languages/brick.yaml -------------------------------------------------------------------------------- /bricks/flavors/__brick__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/flavors/__brick__/README.md -------------------------------------------------------------------------------- /bricks/flavors/__brick__/main_{{#flavors}}{{{.}}}{{/flavors}}.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/flavors/__brick__/main_{{#flavors}}{{{.}}}{{/flavors}}.dart -------------------------------------------------------------------------------- /bricks/flavors/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/flavors/brick.yaml -------------------------------------------------------------------------------- /bricks/greeting/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0+1 2 | 3 | - TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /bricks/greeting/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /bricks/greeting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/greeting/README.md -------------------------------------------------------------------------------- /bricks/greeting/__brick__/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi {{name}}! -------------------------------------------------------------------------------- /bricks/greeting/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/greeting/brick.yaml -------------------------------------------------------------------------------- /bricks/hello/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello/CHANGELOG.md -------------------------------------------------------------------------------- /bricks/hello/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello/LICENSE -------------------------------------------------------------------------------- /bricks/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello/README.md -------------------------------------------------------------------------------- /bricks/hello/__brick__/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello {{name}}! 👋 -------------------------------------------------------------------------------- /bricks/hello/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello/brick.yaml -------------------------------------------------------------------------------- /bricks/hello_world/__brick__/HELLO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello_world/__brick__/HELLO.md -------------------------------------------------------------------------------- /bricks/hello_world/__brick__/{{~ common_footer.md }}: -------------------------------------------------------------------------------- 1 | _made with 💖 by mason_ -------------------------------------------------------------------------------- /bricks/hello_world/__brick__/{{~ common_header.md }}: -------------------------------------------------------------------------------- 1 | # 🧱 {{name}} -------------------------------------------------------------------------------- /bricks/hello_world/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hello_world/brick.yaml -------------------------------------------------------------------------------- /bricks/hooks/__brick__/hooks.md: -------------------------------------------------------------------------------- 1 | Hi {{name}}! -------------------------------------------------------------------------------- /bricks/hooks/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hooks/brick.yaml -------------------------------------------------------------------------------- /bricks/hooks/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hooks/hooks/post_gen.dart -------------------------------------------------------------------------------- /bricks/hooks/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hooks/hooks/pre_gen.dart -------------------------------------------------------------------------------- /bricks/hooks/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/hooks/hooks/pubspec.yaml -------------------------------------------------------------------------------- /bricks/legacy/__brick__/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi {{name}}! -------------------------------------------------------------------------------- /bricks/legacy/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/legacy/brick.yaml -------------------------------------------------------------------------------- /bricks/photos/__brick__/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/photos/__brick__/image.png -------------------------------------------------------------------------------- /bricks/photos/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/photos/brick.yaml -------------------------------------------------------------------------------- /bricks/plugin/__brick__/README.md: -------------------------------------------------------------------------------- 1 | # Plugin 2 | -------------------------------------------------------------------------------- /bricks/plugin/__brick__/example/{{#android}}android.dart{{/android}}: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } -------------------------------------------------------------------------------- /bricks/plugin/__brick__/example/{{#ios}}ios.dart{{/ios}}: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } -------------------------------------------------------------------------------- /bricks/plugin/__brick__/tests/{{#android}}android_tests.dart{{/android}}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/plugin/__brick__/tests/{{#android}}android_tests.dart{{/android}} -------------------------------------------------------------------------------- /bricks/plugin/__brick__/tests/{{#ios}}ios_tests.dart{{/ios}}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/plugin/__brick__/tests/{{#ios}}ios_tests.dart{{/ios}} -------------------------------------------------------------------------------- /bricks/plugin/__brick__/{{#android}}android{{/android}}/README.md: -------------------------------------------------------------------------------- 1 | # Android Plugin 2 | -------------------------------------------------------------------------------- /bricks/plugin/__brick__/{{#android}}build.gradle{{/android}}: -------------------------------------------------------------------------------- 1 | // Empty build.gradle -------------------------------------------------------------------------------- /bricks/plugin/__brick__/{{#ios}}Podfile{{/ios}}: -------------------------------------------------------------------------------- 1 | # Empty Podfile -------------------------------------------------------------------------------- /bricks/plugin/__brick__/{{#ios}}ios{{/ios}}/README.md: -------------------------------------------------------------------------------- 1 | # iOS Plugin 2 | -------------------------------------------------------------------------------- /bricks/plugin/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/plugin/brick.yaml -------------------------------------------------------------------------------- /bricks/random_color/__brick__/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/random_color/__brick__/color.md -------------------------------------------------------------------------------- /bricks/random_color/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/random_color/brick.yaml -------------------------------------------------------------------------------- /bricks/random_color/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/random_color/hooks/post_gen.dart -------------------------------------------------------------------------------- /bricks/random_color/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/random_color/hooks/pre_gen.dart -------------------------------------------------------------------------------- /bricks/random_color/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/random_color/hooks/pubspec.yaml -------------------------------------------------------------------------------- /bricks/simple/__brick__/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /bricks/simple/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/simple/brick.yaml -------------------------------------------------------------------------------- /bricks/todos/__brick__/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/todos/__brick__/todos.md -------------------------------------------------------------------------------- /bricks/todos/__brick__/todos/{{#todos}}todo_{{#upperCase}}{{{todo}}}{{/upperCase}}_todo.md{{/todos}}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/todos/__brick__/todos/{{#todos}}todo_{{#upperCase}}{{{todo}}}{{/upperCase}}_todo.md{{/todos}} -------------------------------------------------------------------------------- /bricks/todos/__brick__/todos/{{#todos}}{{{todo}}}{{/todos}}/developers/{{#developers}}{{{name}}}{{/developers}}/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/todos/__brick__/todos/{{#todos}}{{{todo}}}{{/todos}}/developers/{{#developers}}{{{name}}}{{/developers}}/info.md -------------------------------------------------------------------------------- /bricks/todos/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/todos/brick.yaml -------------------------------------------------------------------------------- /bricks/widget/__brick__/{{name.snakeCase()}}.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/widget/__brick__/{{name.snakeCase()}}.dart -------------------------------------------------------------------------------- /bricks/widget/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/bricks/widget/brick.yaml -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /extensions/vscode/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out/ 3 | dist/ 4 | *.vsix -------------------------------------------------------------------------------- /extensions/vscode/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/.vscode/extensions.json -------------------------------------------------------------------------------- /extensions/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/.vscode/settings.json -------------------------------------------------------------------------------- /extensions/vscode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/.vscode/tasks.json -------------------------------------------------------------------------------- /extensions/vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/.vscodeignore -------------------------------------------------------------------------------- /extensions/vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/LICENSE -------------------------------------------------------------------------------- /extensions/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/README.md -------------------------------------------------------------------------------- /extensions/vscode/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/assets/logo.png -------------------------------------------------------------------------------- /extensions/vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/package-lock.json -------------------------------------------------------------------------------- /extensions/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/package.json -------------------------------------------------------------------------------- /extensions/vscode/schema/brick.yaml.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/schema/brick.yaml.schema.json -------------------------------------------------------------------------------- /extensions/vscode/schema/mason.yaml.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/schema/mason.yaml.schema.json -------------------------------------------------------------------------------- /extensions/vscode/src/commands/add-brick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/add-brick.ts -------------------------------------------------------------------------------- /extensions/vscode/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/index.ts -------------------------------------------------------------------------------- /extensions/vscode/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/init.ts -------------------------------------------------------------------------------- /extensions/vscode/src/commands/make-brick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/make-brick.ts -------------------------------------------------------------------------------- /extensions/vscode/src/commands/new-brick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/new-brick.ts -------------------------------------------------------------------------------- /extensions/vscode/src/commands/remove-brick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/commands/remove-brick.ts -------------------------------------------------------------------------------- /extensions/vscode/src/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./on-file-saved"; 2 | -------------------------------------------------------------------------------- /extensions/vscode/src/events/on-file-saved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/events/on-file-saved.ts -------------------------------------------------------------------------------- /extensions/vscode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/extension.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/get-brick-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/get-brick-yaml.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/index.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/is-mason-installed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/is-mason-installed.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-add.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-exec.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-get.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-init.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-make.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-make.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-new.ts -------------------------------------------------------------------------------- /extensions/vscode/src/mason/mason-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/mason/mason-remove.ts -------------------------------------------------------------------------------- /extensions/vscode/src/utils/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/utils/exec.ts -------------------------------------------------------------------------------- /extensions/vscode/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/utils/index.ts -------------------------------------------------------------------------------- /extensions/vscode/src/utils/prompt-for-target-directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/src/utils/prompt-for-target-directory.ts -------------------------------------------------------------------------------- /extensions/vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/tsconfig.json -------------------------------------------------------------------------------- /extensions/vscode/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/extensions/vscode/webpack.config.js -------------------------------------------------------------------------------- /packages/mason/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/.gitignore -------------------------------------------------------------------------------- /packages/mason/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mason/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/LICENSE -------------------------------------------------------------------------------- /packages/mason/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/README.md -------------------------------------------------------------------------------- /packages/mason/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/analysis_options.yaml -------------------------------------------------------------------------------- /packages/mason/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/build.yaml -------------------------------------------------------------------------------- /packages/mason/coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/coverage_badge.svg -------------------------------------------------------------------------------- /packages/mason/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/example/main.dart -------------------------------------------------------------------------------- /packages/mason/lib/mason.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/mason.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/brick.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/brick.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/brick_compatibility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/brick_compatibility.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/brick_yaml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/brick_yaml.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/brick_yaml.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/brick_yaml.g.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/bricks_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/bricks_json.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/bundler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/bundler.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/exception.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/generator.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/git.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/git.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/hooks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/hooks.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_bundle.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_bundle.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_bundle.g.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_lock_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_lock_json.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_lock_json.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_lock_json.g.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_yaml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_yaml.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/mason_yaml.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/mason_yaml.g.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/path.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/recase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/recase.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/render.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/render.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/string_case_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/string_case_extensions.dart -------------------------------------------------------------------------------- /packages/mason/lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // ignore: public_member_api_docs 2 | const packageVersion = '0.1.2'; 3 | -------------------------------------------------------------------------------- /packages/mason/lib/src/yaml_encode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/lib/src/yaml_encode.dart -------------------------------------------------------------------------------- /packages/mason/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/pubspec_overrides.yaml -------------------------------------------------------------------------------- /packages/mason/test/bricks/custom_registry/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bricks/custom_registry/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/bricks/loop/__brick__/main_{{#values}}{{{.}}}{{/values}}.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bricks/loop/__brick__/main_{{#values}}{{{.}}}{{/values}}.txt -------------------------------------------------------------------------------- /packages/mason/test/bricks/loop/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bricks/loop/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/bricks/nested_conditional/__brick__/{{#generate}}{{#snakeCase}}{{{name}}}{{/snakeCase}}.txt{{/generate}}: -------------------------------------------------------------------------------- 1 | Hello {{name.titleCase()}} -------------------------------------------------------------------------------- /packages/mason/test/bricks/nested_conditional/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bricks/nested_conditional/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/bricks/no_registry/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bricks/no_registry/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/bundles/bundles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bundles/bundles.dart -------------------------------------------------------------------------------- /packages/mason/test/bundles/greeting_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bundles/greeting_bundle.dart -------------------------------------------------------------------------------- /packages/mason/test/bundles/hooks_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bundles/hooks_bundle.dart -------------------------------------------------------------------------------- /packages/mason/test/bundles/photos_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bundles/photos_bundle.dart -------------------------------------------------------------------------------- /packages/mason/test/bundles/relative_imports_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/bundles/relative_imports_bundle.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/basic/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/basic/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/basic/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/basic/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/basic/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/basic/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/basic/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/basic/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/basic/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/compile_exception/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/compile_exception/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/compile_exception/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/compile_exception/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/compile_exception/hooks/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: compile_exception_hooks 2 | 3 | environment: 4 | sdk: ">=2.12.0 <3.0.0" 5 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/dependency_install_failure/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/dependency_install_failure/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/dependency_install_failure/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/dependency_install_failure/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/dependency_install_failure/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/dependency_install_failure/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/dependency_install_failure/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/empty/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/empty/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/execution_exception/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/execution_exception/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/execution_exception/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/execution_exception/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/execution_exception/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/execution_exception/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/execution_exception/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/hooks/__brick__/hooks.md: -------------------------------------------------------------------------------- 1 | Hi {{name}}! -------------------------------------------------------------------------------- /packages/mason/test/fixtures/hooks/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/hooks/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/hooks/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/hooks/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/hooks/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/hooks/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/hooks/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/hooks/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/long_run/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/long_run/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/long_run/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/long_run/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/long_run/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/long_run/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/long_run/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/malformed_pubspec/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/malformed_pubspec/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/malformed_pubspec/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/malformed_pubspec/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/malformed_pubspec/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/malformed_pubspec/hooks/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: malformed_pubspec_hooks -------------------------------------------------------------------------------- /packages/mason/test/fixtures/missing_run/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/missing_run/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/missing_run/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/missing_run/hooks/pre_gen.dart: -------------------------------------------------------------------------------- 1 | void main(){} -------------------------------------------------------------------------------- /packages/mason/test/fixtures/missing_run/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/missing_run/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/programmatic_usage/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/programmatic_usage/main.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/legacy/post_gen.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/legacy/post_gen.dill -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/legacy/pre_gen.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/legacy/pre_gen.dill -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/relative_imports/hooks/src/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/relative_imports/hooks/src/main.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/run_exception/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/run_exception/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/run_exception/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/run_exception/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/run_exception/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/run_exception/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/run_exception/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/unicode_hook/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason/test/fixtures/unicode_hook/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/unicode_hook/brick.yaml -------------------------------------------------------------------------------- /packages/mason/test/fixtures/unicode_hook/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/unicode_hook/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason/test/fixtures/unicode_hook/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/fixtures/unicode_hook/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason/test/src/brick_compatibility_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/brick_compatibility_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/brick_yaml_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/brick_yaml_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/bricks_json_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/bricks_json_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/bundler_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/bundler_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/exception_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/exception_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/generator_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/git_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/git_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/hooks_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/hooks_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/mason_bundle_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/mason_bundle_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/mason_lock_json_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/mason_lock_json_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/mason_yaml_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/mason_yaml_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/render_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/render_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/string_case_extensions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/string_case_extensions_test.dart -------------------------------------------------------------------------------- /packages/mason/test/src/yaml_encode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason/test/src/yaml_encode_test.dart -------------------------------------------------------------------------------- /packages/mason_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/.gitignore -------------------------------------------------------------------------------- /packages/mason_api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mason_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/LICENSE -------------------------------------------------------------------------------- /packages/mason_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/README.md -------------------------------------------------------------------------------- /packages/mason_api/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/analysis_options.yaml -------------------------------------------------------------------------------- /packages/mason_api/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/build.yaml -------------------------------------------------------------------------------- /packages/mason_api/coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/coverage_badge.svg -------------------------------------------------------------------------------- /packages/mason_api/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/example/main.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/mason_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/mason_api.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/jwt_decode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/jwt_decode.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/mason_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/mason_api.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/brick_search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/brick_search_result.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/brick_search_result.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/brick_search_result.g.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/credentials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/credentials.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/credentials.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/credentials.g.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/error_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/error_response.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/error_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/error_response.g.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/models.dart -------------------------------------------------------------------------------- /packages/mason_api/lib/src/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/lib/src/models/user.dart -------------------------------------------------------------------------------- /packages/mason_api/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason_api/test/src/jwt_decode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/test/src/jwt_decode_test.dart -------------------------------------------------------------------------------- /packages/mason_api/test/src/mason_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_api/test/src/mason_api_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/.gitignore -------------------------------------------------------------------------------- /packages/mason_cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mason_cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/LICENSE -------------------------------------------------------------------------------- /packages/mason_cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/README.md -------------------------------------------------------------------------------- /packages/mason_cli/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/README.zh.md -------------------------------------------------------------------------------- /packages/mason_cli/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/analysis_options.yaml -------------------------------------------------------------------------------- /packages/mason_cli/bin/mason.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/bin/mason.dart -------------------------------------------------------------------------------- /packages/mason_cli/coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/coverage_badge.svg -------------------------------------------------------------------------------- /packages/mason_cli/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/dart_test.yaml -------------------------------------------------------------------------------- /packages/mason_cli/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/example/README.md -------------------------------------------------------------------------------- /packages/mason_cli/example/mason.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/example/mason.yaml -------------------------------------------------------------------------------- /packages/mason_cli/example/todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/example/todos.json -------------------------------------------------------------------------------- /packages/mason_cli/lib/mason_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/mason_cli.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/command.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/command_runner.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/add.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/bundle.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/cache.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/commands.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/get.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/get.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/init.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/list.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/login.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/logout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/logout.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/make.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/make.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/new.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/new.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/publish.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/publish.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/remove.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/remove.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/search.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/unbundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/unbundle.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/update.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/commands/upgrade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/commands/upgrade.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/install_brick.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/lib/src/install_brick.dart -------------------------------------------------------------------------------- /packages/mason_cli/lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '0.1.3'; 3 | -------------------------------------------------------------------------------- /packages/mason_cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason_cli/pubspec_overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/pubspec_overrides.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/array_no_choices/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/array_no_choices/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/array_no_choices/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/compilation_error/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/compilation_error/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/compilation_error/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/compilation_error/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/compilation_error/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/compilation_error/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/compilation_error/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/custom_registry/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/custom_registry/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/enum_no_choices/__brick__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/enum_no_choices/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/enum_no_choices/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/invalid_registry/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/invalid_registry/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bricks/no_registry/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bricks/no_registry/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/bundles/bundles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bundles/bundles.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/bundles/greeting.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bundles/greeting.bundle -------------------------------------------------------------------------------- /packages/mason_cli/test/bundles/greeting_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bundles/greeting_bundle.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/bundles/hooks_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bundles/hooks_bundle.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/bundles/legacy_greeting_bundle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/bundles/legacy_greeting_bundle.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/add_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/add_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/bundle_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/bundle_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/cache_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/get_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/get_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/init_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/init_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/list_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/login_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/login_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/logout_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/logout_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/make_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/make_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/new_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/new_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/publish_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/publish_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/remove_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/remove_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/search_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/search_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/unbundle_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/unbundle_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/update_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/update_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/commands/upgrade_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/commands/upgrade_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/ensure_build_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/add/greeting/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi Dash! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/add/widget/cat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/add/widget/cat.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/init/mason.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/init/mason.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/install/greeting/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi Dash! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/install/widget/cat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/install/widget/cat.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/app_icon/c823e53b3a1a7b0d36a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/app_icon/c823e53b3a1a7b0d36a9.png -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/bio/ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/bio/ABOUT.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/documentation/.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary Files 2 | .tmp/ -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/documentation/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | - initial release 🎉 -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/documentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/documentation/LICENSE -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/documentation/README.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/favorite_color/color.md: -------------------------------------------------------------------------------- 1 | Your favorite color is blue! 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/favorite_languages/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/favorite_languages/languages.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/flavors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/flavors/README.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/flavors/main_development.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Running in development mode...'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/flavors/main_production.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Running in production mode...'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/greeting/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi test-name! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/hello_world/HELLO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/hello_world/HELLO.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/hooks/basic/.post_gen.txt: -------------------------------------------------------------------------------- 1 | post_gen: dash -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/hooks/basic/.pre_gen.txt: -------------------------------------------------------------------------------- 1 | pre_gen: dash -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/hooks/basic/hooks.md: -------------------------------------------------------------------------------- 1 | Hi dash! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/hooks/no_hooks/hooks.md: -------------------------------------------------------------------------------- 1 | Hi dash! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/mason.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/mason.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/output_dir/dir/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi test-name! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android/README.md: -------------------------------------------------------------------------------- 1 | # Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android/android/README.md: -------------------------------------------------------------------------------- 1 | # Android Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Empty build.gradle -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android/example/android.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android/tests/android_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/plugin/android/tests/android_tests.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/Podfile: -------------------------------------------------------------------------------- 1 | # Empty Podfile -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/README.md: -------------------------------------------------------------------------------- 1 | # Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/android/README.md: -------------------------------------------------------------------------------- 1 | # Android Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/build.gradle: -------------------------------------------------------------------------------- 1 | // Empty build.gradle -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/example/android.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/example/ios.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/ios/README.md: -------------------------------------------------------------------------------- 1 | # iOS Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/tests/android_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/plugin/android_ios/tests/android_tests.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/android_ios/tests/ios_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/plugin/android_ios/tests/ios_tests.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/empty/README.md: -------------------------------------------------------------------------------- 1 | # Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/ios/Podfile: -------------------------------------------------------------------------------- 1 | # Empty Podfile -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/ios/README.md: -------------------------------------------------------------------------------- 1 | # Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/ios/example/ios.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Android'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/ios/ios/README.md: -------------------------------------------------------------------------------- 1 | # iOS Plugin 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/plugin/ios/tests/ios_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/plugin/ios/tests/ios_tests.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/simple/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos.json -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Code/developers/Alex/info.md: -------------------------------------------------------------------------------- 1 | # Alex 2 | 3 | ## TODO: Code 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Code/developers/Jen/info.md: -------------------------------------------------------------------------------- 1 | # Jen 2 | 3 | ## TODO: Code 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Code/developers/Sam/info.md: -------------------------------------------------------------------------------- 1 | # Sam 2 | 3 | ## TODO: Code 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Eat/developers/Alex/info.md: -------------------------------------------------------------------------------- 1 | # Alex 2 | 3 | ## TODO: Eat 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Eat/developers/Jen/info.md: -------------------------------------------------------------------------------- 1 | # Jen 2 | 3 | ## TODO: Eat 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Eat/developers/Sam/info.md: -------------------------------------------------------------------------------- 1 | # Sam 2 | 3 | ## TODO: Eat 4 | 5 | **DONE** 6 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Alex/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Alex/info.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Jen/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Jen/info.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Sam/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos/Sleep/developers/Sam/info.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/todo_CODE_todo.md: -------------------------------------------------------------------------------- 1 | # TODO Code 2 | 3 | DONE! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/todo_EAT_todo.md: -------------------------------------------------------------------------------- 1 | # TODO Eat 2 | 3 | DONE! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/todos/todos/todo_SLEEP_todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/todos/todos/todo_SLEEP_todo.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/make/widget/my_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/make/widget/my_widget.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0+1 2 | 3 | - TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/README.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/__brick__/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello {{name}}! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/custom/bricks/hello_world/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0+1 2 | 3 | - TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/hooks/README.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/__brick__/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello {{name}}! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/hooks/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/hooks/.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool 2 | .packages 3 | pubspec.lock 4 | build 5 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/hooks/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/hooks/pre_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/hooks/hooks/pre_gen.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/hooks/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/simple/hello_world/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0+1 2 | 3 | - TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/simple/hello_world/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/simple/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/simple/hello_world/README.md -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/simple/hello_world/__brick__/HELLO.md: -------------------------------------------------------------------------------- 1 | Hello {{name}}! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/new/simple/hello_world/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/unbundle/__brick__/GREETINGS.md: -------------------------------------------------------------------------------- 1 | Hi {{name}}! -------------------------------------------------------------------------------- /packages/mason_cli/test/fixtures/unbundle/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/fixtures/unbundle/brick.yaml -------------------------------------------------------------------------------- /packages/mason_cli/test/helpers/directories_deep_equal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/helpers/directories_deep_equal.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/helpers/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/helpers/helpers.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/helpers/override_print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/helpers/override_print.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/helpers/set_up_testing_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/helpers/set_up_testing_environment.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/mason_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/mason_generator_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/src/command_runner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/src/command_runner_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/src/command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/src/command_test.dart -------------------------------------------------------------------------------- /packages/mason_cli/test/src/install_brick_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_cli/test/src/install_brick_test.dart -------------------------------------------------------------------------------- /packages/mason_logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/.gitignore -------------------------------------------------------------------------------- /packages/mason_logger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mason_logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/LICENSE -------------------------------------------------------------------------------- /packages/mason_logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/README.md -------------------------------------------------------------------------------- /packages/mason_logger/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/analysis_options.yaml -------------------------------------------------------------------------------- /packages/mason_logger/coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/coverage_badge.svg -------------------------------------------------------------------------------- /packages/mason_logger/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/example/main.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/mason_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/mason_logger.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/ansi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/ansi.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/ffi/terminal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/ffi/terminal.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/ffi/unix_terminal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/ffi/unix_terminal.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/ffi/windows_terminal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/ffi/windows_terminal.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/io.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/level.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/link.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/mason_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/mason_logger.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/progress.dart -------------------------------------------------------------------------------- /packages/mason_logger/lib/src/terminal_overrides.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/lib/src/terminal_overrides.dart -------------------------------------------------------------------------------- /packages/mason_logger/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/pubspec.yaml -------------------------------------------------------------------------------- /packages/mason_logger/test/ci.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/ci.dart -------------------------------------------------------------------------------- /packages/mason_logger/test/fixtures/ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/fixtures/ci.txt -------------------------------------------------------------------------------- /packages/mason_logger/test/src/io_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/src/io_test.dart -------------------------------------------------------------------------------- /packages/mason_logger/test/src/link_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/src/link_test.dart -------------------------------------------------------------------------------- /packages/mason_logger/test/src/mason_logger_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/src/mason_logger_test.dart -------------------------------------------------------------------------------- /packages/mason_logger/test/src/progress_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/src/progress_test.dart -------------------------------------------------------------------------------- /packages/mason_logger/test/src/terminal_overrides_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/packages/mason_logger/test/src/terminal_overrides_test.dart -------------------------------------------------------------------------------- /tool/verify_pub_score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felangel/mason/HEAD/tool/verify_pub_score.sh --------------------------------------------------------------------------------