1Password / op-js

A JS library powered by the 1Password CLI
https://developer.1password.com/docs/cli
MIT License
91 stars 8 forks source link

Do not bundle code with esbuild during compile step #152

Closed jodyheavener closed 1 year ago

jodyheavener commented 1 year ago

Related: https://github.com/1Password/op-js/issues/146

Context: This package uses esbuild. Up until now we have been bundling the code in this package. This is not necessary as the package is always used in a Node environment, and can even be detrimental to the end user who may wish to patch a specific version of a dependency.

This PR simply removes the --bundle flag in the compile step.

Note: this PR does not address the semver dependency noted in the referenced issue.