Skip to content

Commit

Permalink
Tyding up
Browse files Browse the repository at this point in the history
  • Loading branch information
Nialixus committed Aug 28, 2023
1 parent 5e09adf commit c806dcf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/src/file.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print
part of '../env_reader.dart';

/// A function to take the .env file from given [path] into a more secured version inside [directory].
/// A function to take the .env file from given [input] into a more secured version inside [directory].
void insertFile({required ArgResults from}) {
String input = from['input']!.toString();
String output = from["output"]!.toString();
Expand Down
1 change: 1 addition & 0 deletions bin/src/json.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// ignore_for_file: avoid_print
part of '../env_reader.dart';

/// A function to generate dart model out of .env file
void insertJson({required ArgResults from}) {
String? model = from["model"]?.toString();
if (model != null) {
Expand Down
1 change: 0 additions & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ dev_dependencies:
# The following section is specific to Flutter packages.
flutter:
assets:
- assets/env/env/
- assets/env/

# The following line ensures that the Material Icons font is
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: env_reader
description: Elevate your .env configuration's integrity by encrypting and decrypting across diverse sources—assets, files, strings, memory, and networks—across various platforms. Additionally, simplify Dart model creation from .env data.
description: Enhance the rock-solid integrity of your .env configuration by seamlessly encrypting and decrypting data sourced from a dynamic range of origins—be it assets, files, strings, memory, or networks—spanning a multitude of platforms. What's more, experience the sheer simplicity of generating Dart models directly from your .env data. Your configuration, fortified and efficient, ready to elevate your development journey.
version: 1.1.0
homepage: https://github.com/Nialixus/env_reader.git

Expand Down

0 comments on commit c806dcf

Please sign in to comment.