Built the script in production mode

This commit is contained in:
2025-11-24 15:40:11 -07:00
parent f128e09fe5
commit 27c626cf8c
4 changed files with 678 additions and 4092 deletions
+2
View File
@@ -33,6 +33,8 @@ git clone git@github.com:Dark-Alex-17/devtools.git ~/.local/share/devtools && pu
This will install the repo to `~/.local/share/devtools` and run the `make install` command to build and install the This will install the repo to `~/.local/share/devtools` and run the `make install` command to build and install the
script to your local bin directory (usually `~/.local/bin`). script to your local bin directory (usually `~/.local/bin`).
Just run `dtools --help` to get started!
--- ---
## Features ## Features
+674 -4090
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -13,7 +13,7 @@
source_dir: src source_dir: src
# The path to bashly.yml # The path to bashly.yml
config_path: '%{source_dir}/bashly.yml' config_path: '%{source_dir}/dtools.yml'
# The path to use for creating the bash script # The path to use for creating the bash script
target_dir: . target_dir: .
@@ -45,7 +45,7 @@ compact_short_flags: false
# Set to 'production' or 'development': # Set to 'production' or 'development':
# env: production Generate a smaller script, without file markers # env: production Generate a smaller script, without file markers
# env: development Generate with file markers # env: development Generate with file markers
env: development env: production
# The extension to use when reading/writing partial script snippets # The extension to use when reading/writing partial script snippets
partials_extension: sh partials_extension: sh
View File