From 3a36c1245006f53f7a38271a2afd17b868bec2d0 Mon Sep 17 00:00:00 2001 From: Damien Le Berrigaud Date: Tue, 5 Sep 2023 21:54:27 -0600 Subject: [PATCH] Set version and document usage. --- README.md | 19 +++++++++++++++++++ pubspec.yaml | 1 + 2 files changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d4f40d0 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Cyclic Dependency Checks + +This is a small cyclic dependency checker for Dart projects. + +## Setup + +From inside one of your Dart projects + +``` +dart pub add cyclic_dependency_checks --git-url=https://github.com/dam5s/cyclic_dependency_checks.git --git-ref=release/0.1.0 +``` + +## Running it + +Again, from inside your Dart project + +``` +dart run cyclic_dependency_checks . +``` diff --git a/pubspec.yaml b/pubspec.yaml index 0114528..002253e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,6 @@ name: cyclic_dependency_checks description: Cyclic Dependency checks for dart projects +version: 0.1.0 environment: sdk: '>=3.0.5 <4.0.0'