Updated repository links
This commit is contained in:
parent
ff197d984e
commit
91bd1bf314
4 changed files with 15 additions and 9 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 8.2.0
|
||||||
|
|
||||||
|
* Updated to `analyzer` 6.3.x
|
||||||
|
* Updated repository link
|
||||||
|
* Updated `lints` to 3.0.0
|
||||||
|
|
||||||
## 8.1.1
|
## 8.1.1
|
||||||
|
|
||||||
* Updated README
|
* Updated README
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Angel3 CLI
|
# Angel3 CLI
|
||||||
|
|
||||||
[![Angel3 Logo](angel3_logo.png)](https://github.com/dukefirehawk/angel3-cli)
|
[![Angel3 Logo](angel3_logo.png)](https://github.com/dart-backend/angel3-cli)
|
||||||
|
|
||||||
![Pub Version (including pre-releases)](https://img.shields.io/pub/v/angel3_cli?include_prereleases)
|
![Pub Version (including pre-releases)](https://img.shields.io/pub/v/angel3_cli?include_prereleases)
|
||||||
[![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)
|
||||||
[![License](https://img.shields.io/github/license/dukefirehawk/angel3-cli)](https://github.com/dukefirehawk/angel3-cli/blob/master/LICENSE)
|
[![License](https://img.shields.io/github/license/dart-backend/angel3-cli)](https://github.com/dart-backend/angel3-cli/blob/master/LICENSE)
|
||||||
|
|
||||||
The command line interface for buidling dart backend in [Angel3 framework](https://pub.dev/packages/angel3_framework) that provides the following functionalities:
|
The command line interface for buidling dart backend in [Angel3 framework](https://pub.dev/packages/angel3_framework) that provides the following functionalities:
|
||||||
|
|
||||||
|
@ -28,4 +28,4 @@ For information on the available options:
|
||||||
angel3 help
|
angel3 help
|
||||||
```
|
```
|
||||||
|
|
||||||
[![Screenshot of Terminal](screenshots/angel3-screenshot.png)](https://github.com/dukefirehawk/angel3-cli)
|
[![Screenshot of Terminal](screenshots/angel3-screenshot.png)](https://github.com/dart-backend/angel3-cli)
|
||||||
|
|
|
@ -281,7 +281,7 @@ Future preBuild(Directory projectDir) async {
|
||||||
if (buildCode != 0) throw Exception('Failed to pre-build resources.');
|
if (buildCode != 0) throw Exception('Failed to pre-build resources.');
|
||||||
}
|
}
|
||||||
|
|
||||||
const repoLocation = 'https://github.com/dukefirehawk';
|
const repoLocation = 'https://github.com/dart-backend';
|
||||||
|
|
||||||
const BoilerplateInfo graphQLBoilerplate = BoilerplateInfo(
|
const BoilerplateInfo graphQLBoilerplate = BoilerplateInfo(
|
||||||
'GraphQL',
|
'GraphQL',
|
||||||
|
|
10
pubspec.yaml
10
pubspec.yaml
|
@ -1,12 +1,12 @@
|
||||||
name: angel3_cli
|
name: angel3_cli
|
||||||
version: 8.1.1
|
version: 8.2.0
|
||||||
description: The command line interface for building dart backend in Angel3 framework.
|
description: The command line interface for building dart backend in Angel3 framework.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel3-cli
|
repository: https://github.com/dart-backend/angel3-cli
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.0 <4.0.0'
|
sdk: '>=3.0.0 <4.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
analyzer: ^6.2.0
|
analyzer: ^6.3.0
|
||||||
args: ^2.4.0
|
args: ^2.4.0
|
||||||
code_builder: ^4.5.0
|
code_builder: ^4.5.0
|
||||||
dart_style: ^2.3.0
|
dart_style: ^2.3.0
|
||||||
|
@ -15,7 +15,7 @@ dependencies:
|
||||||
io: ^1.0.0
|
io: ^1.0.0
|
||||||
inflection3: ^0.5.3+2
|
inflection3: ^0.5.3+2
|
||||||
mustache_template: ^2.0.0
|
mustache_template: ^2.0.0
|
||||||
path: ^1.8.0
|
path: ^1.9.0
|
||||||
prompts: ^2.0.0
|
prompts: ^2.0.0
|
||||||
pubspec_parse: ^1.2.0
|
pubspec_parse: ^1.2.0
|
||||||
quiver: ^3.2.0
|
quiver: ^3.2.0
|
||||||
|
@ -24,6 +24,6 @@ dependencies:
|
||||||
watcher: ^1.1.0
|
watcher: ^1.1.0
|
||||||
yaml: ^3.1.0
|
yaml: ^3.1.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
lints: ^2.0.0
|
lints: ^3.0.0
|
||||||
executables:
|
executables:
|
||||||
angel3: angel3
|
angel3: angel3
|
||||||
|
|
Loading…
Reference in a new issue