Two small changes:
- Gets rid of calls to
npx
, because we know the binaries we use are installed locally. By not callingnpx
, we don't check if the binaries are in the path before the scripts run. This saves each script some time. - Runs the commands in
publish
sequentially, since they do not depend on each other. More time-saving!