imgstat 2.0.5 → 2.0.6

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.
Files changed (2) hide show
  1. package/lib/analyze.sh +1 -1
  2. package/package.json +1 -1
package/lib/analyze.sh CHANGED
@@ -13,7 +13,7 @@ cmd_analyze() {
13
13
  -type f \( -name "*.html" -o -name "*.jsx" -o -name "*.tsx" -o -name "*.js" -o -name "*.ts" \
14
14
  -o -name "*.vue" -o -name "*.css" -o -name "*.scss" -o -name "*.php" \
15
15
  -o -name "*.py" -o -name "*.rb" -o -name "*.svelte" -o -name "*.astro" \) \
16
- -exec grep -oE "https?://[^\"')[:space:]]+" {} + 2>/dev/null | sort -u)
16
+ -exec grep -hoE "https?://[^\"')[:space:]]+" {} + 2>/dev/null | sort -u)
17
17
 
18
18
  if [[ ${#all_urls[@]} -eq 0 ]]; then
19
19
  echo "No remote URLs found in code files."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imgstat",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "Embeds image dimensions directly into filenames for natural AI context.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"