Closed tow8ie closed 6 years ago
I have simplified the regex to now care about the directory, but only include .inc.js
files, as extern files are already managed in Git, their checksum doesn't matter that much. https://github.com/cljsjs/boot-cljsjs/commit/3c2bb4ef46c3fe7252fc398b1c3b5572136e7b42
Without this fix of the regex, the
validate-checksums
function will only update the resources in theboot-cljsjs-checksums.edn
file which are matched by the incomplete regex. This leads to deletion of entries inboot-cljsjs-checksums.edn
.The regex that describes which files have checksums now reflects:
development
as directory name for dev resources (documented here)..inc.js
file ending, the.ext.js
resources are checked, too (see here or here, for example).Also, the regex that is displayed in the help message of
validate-checksums
is now indentical to the one actually used.