You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to move all application dependencies from the archetype to each individual Victory repo. We currently specify radium and lodash in the archetype.
Repos
builder-victory-component
victory (update last, once we've pushed new versions of everything)
victory-animation
victory-axis
victory-bar
victory-chart
victory-label
victory-line
victory-pie
victory-scatter
victory-component-boilerplate
Explanation
The only way to guarantee a specific dependency version (excluding npm shrinkwrap) is to specify the dependency in the project.
We need to move all application dependencies from the archetype to each individual Victory repo. We currently specify
radium
andlodash
in the archetype.Repos
Explanation
The only way to guarantee a specific dependency version (excluding
npm shrinkwrap
) is to specify the dependency in the project.Example of problem manifesting:
$ git clone https://github.com/coopy/d3-victory-comparison
$ cd d3-victory-comparison && npm install
$ node_modules/.bin/webpack-dev-server
We find that lodash version
4.0.0
is installed:One of the dependencies have a dependency on lodash 4-5:
The
argparse
lodash dep ends up overriding the archetype lodash (which is set to^3.10.1
).The text was updated successfully, but these errors were encountered: