I am working angular 2 project and built with collection of angular 
components.

Some of the components has dependencies with other components. It is like 
this.

detail-view
   component-view 
       item-detail-view

here "item-detail-view" comp is under the "component-view". again 
"component-view" is inside the "detail-view"

In such cases we are specifying peer decencies in package.json file as 
follows
detail-view

{
  "name": "@cc/detail-view", 
  "dependencies": {
    "@cc/component-view": "^0.1.1",

  }}

component-view

{
  "name": "@cc/component-view",
  "version": "0.1.63",
  "main": "./index.js",
  "types": "./index.d.ts",
  "module": "es6",
  "keywords": [
    "component-view"
  ],
  "dependencies": {
    "@cc/item-detail-view": "^0.1.2",

  }}

My question is when updating the version of inner most component 
"item-detail-view" is there a way to update the its parent recursively?

Is there any automated mechanism to do that. It takes more time when doing 
with manually.

Thanks Nuwan

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to