appydave-tools 0.32.3 → 0.32.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/appydave/tools/dam/project_listing.rb +8 -3
- data/lib/appydave/tools/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7383b04769a66ee3d2ee80142e2ecfa869cf967bf50b85d5d29125d35162c820
|
|
4
|
+
data.tar.gz: a1d096b58aa583ef4d769b49765173eb289daf8270b0a1d574e0a31d8d738333
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0055e27b4ac88074155d013f841b3295a86fab1e86484a176d59518e1e9e947e5e5ac17f5804ea38b51351d2a21ed3a725f1998202b86af0ed0172b617fcabd
|
|
7
|
+
data.tar.gz: 16978f858fb349eaca6c9cfd4291b5c3e6ad48fe035beaa38bea03cc429f43295611e6eb302a76ae03f1d98c14f4938285c8c7aa732082aab1a13b6ae5e7d3c9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.32.3](https://github.com/appydave/appydave-tools/compare/v0.32.2...v0.32.3) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add debug logging to projects_directory and re-add 'projects' to organizational folder exclusions to diagnose configuration issue ([0dc34d7](https://github.com/appydave/appydave-tools/commit/0dc34d765d3ec89400304eebf4a0718a4485580d))
|
|
7
|
+
|
|
1
8
|
## [0.32.2](https://github.com/appydave/appydave-tools/compare/v0.32.1...v0.32.2) (2025-11-21)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -55,8 +55,11 @@ module Appydave
|
|
|
55
55
|
|
|
56
56
|
# List all projects for a specific brand (Mode 3)
|
|
57
57
|
def self.list_brand_projects(brand_arg)
|
|
58
|
+
# ProjectResolver expects the original brand key/shortcut, not the expanded v-* version
|
|
59
|
+
projects = ProjectResolver.list_projects(brand_arg)
|
|
60
|
+
|
|
61
|
+
# Only expand brand for display purposes
|
|
58
62
|
brand = Config.expand_brand(brand_arg)
|
|
59
|
-
projects = ProjectResolver.list_projects(brand)
|
|
60
63
|
|
|
61
64
|
if projects.empty?
|
|
62
65
|
puts "⚠️ No projects found for brand: #{brand}"
|
|
@@ -96,9 +99,11 @@ module Appydave
|
|
|
96
99
|
|
|
97
100
|
# List with pattern matching (Mode 3b)
|
|
98
101
|
def self.list_with_pattern(brand_arg, pattern)
|
|
102
|
+
# ProjectResolver expects the original brand key/shortcut, not the expanded v-* version
|
|
103
|
+
matches = ProjectResolver.resolve_pattern(brand_arg, pattern)
|
|
104
|
+
|
|
105
|
+
# Only expand brand for display purposes
|
|
99
106
|
brand = Config.expand_brand(brand_arg)
|
|
100
|
-
brand_path = Config.brand_path(brand)
|
|
101
|
-
matches = ProjectResolver.resolve_pattern(brand_path, pattern)
|
|
102
107
|
|
|
103
108
|
if matches.empty?
|
|
104
109
|
puts "⚠️ No projects found matching pattern: #{pattern}"
|
data/package.json
CHANGED