func new
behaves differently for different core tools installs
#4343
Labels
func new
behaves differently for different core tools installs
#4343
mkdir some-project && cd some-project
echo "{}" > package.json
npm i -D azure-functions-core-tools
export PATH=./node_modules/.bin:${PATH}
func init --worker-runtime node --language javascript --model V4
func new
=> list of 27 possible templatesmkdir some-project && cd some-project
echo "{}" > package.json
brew tap azure/functions && brew install azure-functions-core-tools@4
func init --worker-runtime node --language javascript --model V4
func new
=> list of 15 possible templatesI would expect that either method to result in the same code being generated. What is the difference? In either case,
func --version
reports "4.0.7030".The text was updated successfully, but these errors were encountered: