Joined September 2012
· Posted to Launch Sublime Text From the Command Line in Windows over 1 year ago
@mitchp/guys,
Can you help out how can I do the same using ConEmu? I use this as client for all cli purposes.
Posted to Say Hello to Background-Origin and Background-Clip, CSS3 new features! over 1 year ago
upvoted.
Posted to How to place three DIVs in regular spacing inline. over 1 year ago
You are asking the question or showcasing your findings? I wonder if this would work. You placed any demo?
Posted to DO NOT $('#foo a'); DO $('#foo').find('a'); over 1 year ago
Exactly. I am wondering what kind of understanding author has. @argyleink.: Get some reading before you make so called PRO-TIP.
Posted to parseInt() can be dangerous over 1 year ago
Awesome discussion!
Posted to Don't overuse $(this) over 1 year ago
@lublushokolad I like the 'real men' stuff!
Achievements
714 Karma
265,044 Total ProTip Views
Forked
Have a project valued enough to be forked by someone else
I would rather just empty the dependencies or devDependencies within package.json and then hit "npm prune". Voila.
eg.
"devDependencies": {
}
Now, hit
npm prune- and it will remove all npm_modules. Its also help if you wish to remove only certain modules. In that case - you just want to remove that particular module name from your dependencies from package.json and then again 'npm prune'.Solved.