Adds additional script to ensure properly updated dist prior to release.
Before
Library is not guaranteed to execute a build step to properly update dist directory prior to deployment; as a result, some libraries include the prior release in their dist folder.
After
We include both a prepare and a prepublishOnly step to ensure that the library executes a build prior to deploying a release.
Adds additional script to ensure properly updated
dist
prior to release.Before
Library is not guaranteed to execute a
build
step to properly updatedist
directory prior to deployment; as a result, some libraries include the prior release in theirdist
folder.After
We include both a
prepare
and aprepublishOnly
step to ensure that the library executes a build prior to deploying a release.