Is there any documentation on what each ColdFusion...
# documentation
m
Is there any documentation on what each ColdFusion 2021 package does? For instance, I would like to know the list of functions/tags that require it, as well as any non-language features.
cc @saghosh @Mark Takata (Adobe)
m
The only way I know of doing this is to run CFPM and do a info <packagename> for all the packages
so you can do list, then info <packagename> for each one
I don't think we have a verbose list
Are you familiar with CFPM?
m
I'm a bit familiar. All I can see is an extremely brief description for each (one sentence) and a list of required JARs.
Sometimes required packages if there's a package dependency relationship.
m
Yeah we don't have a list of functions which require certain packages. I mean, that data (I assume) exists, as you run the scanner and it will tell you what your code needs.
So like what I've done before is to empty all packages (except for admin as that's required) then run scan, which treeshakes and shows you all required packages, then you can do an install on just those using CFPM and a list
tiny bit clunky though, and I'd like to have that in the UI at some point