Answer the question
In order to leave comments, you need to log in
How to load and keep up-to-date versions of packages in a project?
I use ubuntu.
And also node npm bower sass etc. I'm new to the first three.
How can I add the necessary repositories for example with normalize and jquery to load these packages and keep them up to date naturally through the console? Google didn't answer me unfortunately.
Answer the question
In order to leave comments, you need to log in
In configs, you bower.json
prescribe package versions through *
:
{
"private": true,
"dependencies": {
"normalize-css": "*",
"underscore": "*",
"jquery": "*",
"html5-boilerplate": "*"
},
"devDependencies": {
"almond": "*"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
bower update
https://www.npmjs.com/package/npm-check-updates
https://www.npmjs.com/package/bower-update
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question