Is there a .bowerrc
equivalent in jspm
? When I run jspm install
, I'd like jspm to install the packages to client/jspm_packages
folder.
How can I configure jspm to change location of jspm_packages folder?
Thanks
Is there a .bowerrc
equivalent in jspm
? When I run jspm install
, I'd like jspm to install the packages to client/jspm_packages
folder.
How can I configure jspm to change location of jspm_packages folder?
Thanks
I found it. In your package.json
, add the path into packages
inside directories
.
"jspm": {
"directories": {
"packages": "new/path/to/jspm_packages"
}
}