As my understanding earlier was that we could refer dependencies,
- directly 'some-dep-from-global' or
- github 'git+ssh:something#v1.1.1'or
- local '~/something' etc
But came across node project which has dependencies listed using prefixed "@somename/" which I have not come across till now. I am trying to run project but '@something/**' dependencies are not getting installed.
What exactly it is? Is it another way of configuring dependencies locally? Any inputs would be helpful.
"dependencies": {
"@somename/some-dep-1": "^1.1.0",
"@somename/some-dep-2": "^1.7.0",
"@somename/some-dep-3": "^1.0.4"
}
via Anil Namde
No comments:
Post a Comment