When the npm publish command is run, it builds the library twice before sending to the NPM repository. This is unnecessary and could certainly be reduced.
Updated npm run build to avoid having it call npm run build-src twice, which was the source of this issue. Since npm publish triggers npm run build this was the same issue.
When the
npm publish
command is run, it builds the library twice before sending to the NPM repository. This is unnecessary and could certainly be reduced.