uniform-team / Uniform-Validation-Language

A logic language to simplify and improve online form validation.
Apache License 2.0
1 stars 0 forks source link

Fix Double Build on `npm publish` #58

Closed dgp1130 closed 7 years ago

dgp1130 commented 7 years ago

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.

dgp1130 commented 7 years ago

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.