| OLD | NEW |
| 1 name: dev_compiler | 1 name: dev_compiler |
| 2 description: Dart dev checker / compiler | 2 description: Dart dev checker / compiler |
| 3 dependencies: | 3 dependencies: |
| 4 analyzer: | 4 analyzer: |
| 5 git: | 5 git: |
| 6 url: https://github.com/dart-lang/ddc_analyzer.git | 6 url: https://github.com/dart-lang/ddc_analyzer.git |
| 7 ref: master | 7 ref: master |
| 8 args: ^0.12.1 | 8 args: ^0.12.1 |
| 9 cli_util: ^0.0.1 | 9 cli_util: ^0.0.1 |
| 10 crypto: ^0.9.0 | 10 crypto: ^0.9.0 |
| 11 # We pin a specific version to ensure everyone is formatting the code exactly | 11 # We pin a specific version to ensure everyone is formatting the code exactly |
| 12 # the same way. This is because any change in dart_style, even non-braking | 12 # the same way. This is because any change in dart_style, even non-braking |
| 13 # changes, may change the output format. | 13 # changes, may change the output format. |
| 14 dart_style: 0.1.7 | 14 dart_style: 0.1.7 |
| 15 html5lib: ^0.12.0 | 15 html5lib: ^0.12.0 |
| 16 logging: ^0.9.2 | 16 logging: ^0.9.2 |
| 17 path: ^1.3.0 | 17 path: ^1.3.0 |
| 18 shelf: ^0.6.0 | 18 shelf: ^0.6.0 |
| 19 shelf_static: ^0.2.1 | 19 shelf_static: ^0.2.1 |
| 20 source_maps: ^0.10.0 | 20 source_maps: ^0.10.0 |
| 21 source_span: ^1.0.0 | 21 source_span: ^1.0.0 |
| 22 stack_trace: ^1.1.1 | 22 stack_trace: ^1.1.1 |
| 23 yaml: ^2.1.2 |
| 23 dev_dependencies: | 24 dev_dependencies: |
| 24 pub_semver: ^1.1.0 | 25 pub_semver: ^1.1.0 |
| 25 unittest: ^0.11.0 | 26 unittest: ^0.11.0 |
| 26 dependency_overrides: | 27 dependency_overrides: |
| 27 analyzer: | 28 analyzer: |
| 28 git: | 29 git: |
| 29 url: https://github.com/dart-lang/ddc_analyzer.git | 30 url: https://github.com/dart-lang/ddc_analyzer.git |
| 30 ref: master | 31 ref: master |
| 31 executables: | 32 executables: |
| 32 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use | 33 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use |
| 33 # "dartdevc" and "devc.dart" | 34 # "dartdevc" and "devc.dart" |
| 34 dartdevc: devc | 35 dartdevc: devc |
| OLD | NEW |