Updated analyzer
This commit is contained in:
parent
d8efcdef28
commit
3bfdf05c0e
5 changed files with 9 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.1.0
|
||||||
|
|
||||||
|
* Upgraded to support `analyzer` 2.0.0 major release
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
|
|
||||||
* Updated help to use `angel3`
|
* Updated help to use `angel3`
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[![Screenshot of Terminal](screenshots/angel3-screenshot.png)](https://github.com/dukefirehawk/angel3-cli)
|
[![Screenshot of Terminal](screenshots/angel3-screenshot.png)](https://github.com/dukefirehawk/angel3-cli)
|
||||||
|
|
||||||
[![version](https://img.shields.io/badge/pub-v3.0.1-brightgreen)](https://pub.dartlang.org/angel3_cli)
|
[![version](https://img.shields.io/badge/pub-v3.1.0-brightgreen)](https://pub.dartlang.org/angel3_cli)
|
||||||
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
||||||
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ class InitCommand extends Command {
|
||||||
..writeln()
|
..writeln()
|
||||||
..writeln('Find more documentation about Angel3:')
|
..writeln('Find more documentation about Angel3:')
|
||||||
..writeln(' * https://angel3-framework.web.app')
|
..writeln(' * https://angel3-framework.web.app')
|
||||||
..writeln(' * https://angel3-docs.dukefirehaw.com')
|
..writeln(' * https://angel3-docs.dukefirehawk.com')
|
||||||
..writeln(
|
..writeln(
|
||||||
' * https://www.youtube.com/playlist?list=PLl3P3tmiT-frEV50VdH_cIrA2YqIyHkkY')
|
' * https://www.youtube.com/playlist?list=PLl3P3tmiT-frEV50VdH_cIrA2YqIyHkkY')
|
||||||
..writeln(' * https://medium.com/the-angel-framework')
|
..writeln(' * https://medium.com/the-angel-framework')
|
||||||
|
|
|
@ -12,6 +12,7 @@ import 'package:yaml/yaml.dart' as yaml;
|
||||||
import '../util.dart';
|
import '../util.dart';
|
||||||
import 'make/maker.dart';
|
import 'make/maker.dart';
|
||||||
|
|
||||||
|
@deprecated
|
||||||
class InstallCommand extends Command {
|
class InstallCommand extends Command {
|
||||||
static const String repo = 'https://github.com/angel-dart/install.git';
|
static const String repo = 'https://github.com/angel-dart/install.git';
|
||||||
static final Directory installRepo =
|
static final Directory installRepo =
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
name: angel3_cli
|
name: angel3_cli
|
||||||
version: 3.0.1
|
version: 3.1.0
|
||||||
description: Command line tools for the Angel3 framework, including scaffolding.
|
description: Command line tools for the Angel3 framework, including scaffolding.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel3-cli
|
repository: https://github.com/dukefirehawk/angel3-cli
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
analyzer: ^1.7.0
|
analyzer: ^2.0.0
|
||||||
args: ^2.1.1
|
args: ^2.1.1
|
||||||
code_builder: ^4.0.0
|
code_builder: ^4.0.0
|
||||||
dart_style: ^2.0.1
|
dart_style: ^2.0.1
|
||||||
|
|
Loading…
Reference in a new issue