ionic-team / stencil-component-starter

Minimal starter project for building shareable web components with Stencil
https://github.com/ionic-team/stencil
MIT License
278 stars 129 forks source link

@stencil/core package #44

Closed iofirag closed 6 years ago

iofirag commented 6 years ago

When i install my package in an angular project i have see that "@stencil/core" also installed.

why @stencil/core located in dependencies object and not in devDependencies object?

package.json

"dependencies": {
    "@stencil/core": "^0.6.18"
  },
  "devDependencies": {
    ...
  },

should be:

"dependencies": {
    ...
  },
  "devDependencies": {
    "@stencil/core": "^0.6.18"
  },

for avoiding the installation of @stencil/core and make it pure web-component.

adamdbradley commented 6 years ago

Should be fix now, thanks

tfrijsewijk commented 4 years ago

So is this back? When creating a new stencil project with yarn create stencil -> type "components" I get

  "dependencies": {
    "@stencil/core": "^2.0.1"
  },
jdnichollsc commented 3 years ago

@adamdbradley do you know why? thanks mate!