Description of changes:
Deployment stage is failing due to sh: jest: command not found.
This change attempts to fix this issue by removing the command to delete node_modules in publish-package.sh.
This shouldn't have any effect on publishing since npm publishignores all files present in .gitignore.
Why wasn't this happening before? npm's prepare and prepublishOnly stages were unable to run in previous builds.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Issue #, if available: N/A
Description of changes: Deployment stage is failing due to
sh: jest: command not found
. This change attempts to fix this issue by removing the command to deletenode_modules
inpublish-package.sh
. This shouldn't have any effect on publishing sincenpm publish
ignores all files present in.gitignore
.Why wasn't this happening before? npm's
prepare
andprepublishOnly
stages were unable to run in previous builds.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.