Question… does SEED has cache for `npm_modules`? I...
# seed
a
Question… does SEED has cache for
npm_modules
? I have to consume a private library like this:
Copy code
"@yabble/ui-components": "git+<https://xxxxxxx@bitbucket.org/yabble/yabble-ui-components.git>",
But apparently is not pulling the latest changes. Maybe is cached?
f
Hey @Adrián Mouly, SEED caches the
node_modules
folder.
a
Ok.
So how should I do in this case?
Because there is no version in the npm definition.
f
Can you try triggering a deploy from SEED UI with force option?
a
Yeah I’ve tried force.
But still the same.
f
Oh
a
Force should remove cache?
f
With the force option, nothing is cached
Yup, clean install
a
Mmm, weird.
f
Just curious, can
git+https
take a commit hash?
a
Ok I’ve changed my previous line which used HTTPS, to SSH and it works… but maybe is just invalidating:
Copy code
"@yabble/ui-components": "<git+ssh://git@bitbucket.org/yabble/yabble-ui-components.git>"
Not sure.
I’ve moved to git+ssh now.
But by default should do the same I think.
f
Hey @Adrián Mouly, any luck w/
git+ssh
?
a
It works so far, no issues yet, also I think the library I’m pulling has been updated.. but going to continue monitoring.