devon build command not working correct for yarn or npm #431
Labels
bug
Something isn't working
commandlet
related to commandlets (scripts/command/*)
javascript
related to JavaScript tooling (node, npm, ng, etc.)
scripts
related to shell scripts (bash and CMD)
Milestone
As discussed in PR #417 the command
devon build
for yarn or in other words the commanddevon yarn build
is not working correct.It invokes
yarn build
. However, dependencies may not be installed and not every project may have abuild
script.IMHO the same applies for
npm
as well.The JavaScript ecosystem is less standardized so there are no clear goals and guidelines for this (other than for
maven
orgradle
).To me the build of a project should behave a following:
yarn install
ornpm install
)yarn run build
ornpm run build
ifbuild
section is present inscripts
section ofpackage.json
)The text was updated successfully, but these errors were encountered: