nxext / nx-extensions

Nx Extensions for Stencil, Svelte, SolidJS, Preact, Ionic, and Capacitor
MIT License
465 stars 102 forks source link

dependencies are not bundled as expected #311

Open mburger81 opened 3 years ago

mburger81 commented 3 years ago

Describe the bug In our package.json file for the workspace we have this dependencies:

"dependencies": {
    "@nxext/stencil": "^12.1.2",
    "@stencil/state-tunnel": "^1.0.1",
    "@types/masonry-layout": "^4.2.4",
    "masonry-layout": "^4.2.2",
    "tslib": "^2.0.0"
  },

But when we install the publishable lib in our ionic app, we run into the issue that the masonry-layout is not available.

Having a look to our original library we have to include it only in the dependencies and anything is fine when we install this lib in a angular project

Do I missing something?

DominikPieper commented 3 years ago

Hey, I don't know how masonry-layout works. Is it pure css or some js imported anywhere?