-
Notifications
You must be signed in to change notification settings - Fork 298
Why apm install the packageDependencies to node_module folder? #120
Comments
ping the author @kevinsawicki I check the commit history, the help comment is added first, then the |
I would consider this an enhancement to support package to package dependencies using this property. |
@kevinsawicki Oh, following your clue. I find one bigger issue. The atom main package is using Other personal installed packages are under All built-in packages cannot be uninstall from
I think this is violating the notion of hackable editor, those built-in packages are like the embedded packages, they are not hackable. :( In my opinion, it is better to distinguish as global packages and personal packages, Just like what |
The
apm install
says:Why this is by design?
I am writing some specs for an atom package, which is dependent on another package. So, I write the dependent package's name on the
packageDependencies
list, then use the Travis CI config provided by Atom/CI to run the specs.After push the commit, Travis said:
The failure message confused me, and after investigation, I find this is a design issue. So, why does
apm install
installpackageDependencies
tonode_module
folder instead of~/.atom/package
folder?The text was updated successfully, but these errors were encountered: