appydave-tools 0.32.2 → 0.32.3
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_resolver.rb +10 -6
- 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: c7ed0260cd5c4a5728bd6337b51397e1f23c7b13743f9dd4502b50acc3c1574a
|
|
4
|
+
data.tar.gz: 257973640a01cf4858e7e14d2c394d4514f07703daa4734643dbeeb0a2748135
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f46f82711d33bade0f4522a675ed3ba6f6c1fb7f5944da0e93dcae56b43eced47e09073550463ed0a42f73feca7b0d5b59e356cbcb2dfa11786eedd8a7522405
|
|
7
|
+
data.tar.gz: cf56022d6e532d535e6d700db801f30ef68ab93d0e0681ad9998831ba13301b2b6e57acfb92cbfd28b4b49343380bb9ed577a0c25290fc4c6b639efcd73778a3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.32.2](https://github.com/appydave/appydave-tools/compare/v0.32.1...v0.32.2) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove 'projects' from organizational folder exclusions - it should only be excluded when appearing at brand root, not when projects_subfolder properly configured ([4c72a11](https://github.com/appydave/appydave-tools/commit/4c72a116805573a3444dd977ed711e5f7538e190))
|
|
7
|
+
|
|
1
8
|
## [0.32.1](https://github.com/appydave/appydave-tools/compare/v0.32.0...v0.32.1) (2025-11-21)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -96,10 +96,8 @@ module Appydave
|
|
|
96
96
|
return false if excluded.include?(basename)
|
|
97
97
|
|
|
98
98
|
# Exclude organizational folders (for brands using projects_subfolder)
|
|
99
|
-
#
|
|
100
|
-
|
|
101
|
-
# If projects_subfolder is NOT configured, users may legitimately have a project named 'projects'.
|
|
102
|
-
organizational = %w[brand personas video-scripts]
|
|
99
|
+
# Including 'projects' because if it appears, it means projects_directory isn't working correctly
|
|
100
|
+
organizational = %w[brand personas projects video-scripts]
|
|
103
101
|
return false if organizational.include?(basename)
|
|
104
102
|
|
|
105
103
|
# Exclude hidden and underscore-prefixed
|
|
@@ -143,9 +141,15 @@ module Appydave
|
|
|
143
141
|
brand_info = Appydave::Tools::Configuration::Config.brands.get_brand(brand)
|
|
144
142
|
brand_path = Config.brand_path(brand)
|
|
145
143
|
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
subfolder = brand_info.settings.projects_subfolder
|
|
145
|
+
puts "DEBUG projects_directory: brand=#{brand}, brand_info.key=#{brand_info.key}, subfolder='#{subfolder}'" if ENV['DEBUG']
|
|
146
|
+
|
|
147
|
+
if subfolder && !subfolder.empty?
|
|
148
|
+
result = File.join(brand_path, subfolder)
|
|
149
|
+
puts "DEBUG projects_directory: returning #{result}" if ENV['DEBUG']
|
|
150
|
+
result
|
|
148
151
|
else
|
|
152
|
+
puts "DEBUG projects_directory: returning brand_path #{brand_path}" if ENV['DEBUG']
|
|
149
153
|
brand_path
|
|
150
154
|
end
|
|
151
155
|
end
|
data/package.json
CHANGED