Layer 7 Web, LLC » All Posts https://layer7web.com/discussion/frameworks/development-tools/feed Sat, 23 Nov 2024 08:26:36 +0000 https://bbpress.org/?v=2.6.9 en-US https://layer7web.com/?post_type=topic&p=3243/#post-3244 <![CDATA[Reply To: Vagrant]]> https://layer7web.com/?post_type=topic&p=3243/#post-3244 Wed, 30 May 2018 20:01:22 +0000 Layer7web To not have to enter a password when using and the vagrant-hostsupdater plugin.

Change the permissions using this on a Mac:

This was needed when Jenkins was running. It would hang on this otherwise.

]]>
https://layer7web.com/?post_type=topic&p=3171/#post-3172 <![CDATA[Reply To: Gulp]]> https://layer7web.com/?post_type=topic&p=3171/#post-3172 Tue, 30 Jan 2018 02:25:53 +0000 Layer7web Issue:
When I had installed NPM on my mac it installed into the /Users/{username}/… etc folder. This made it so when I installed Gulp globally it was not available and always gave me the “Command not found” error. After an hour of googling, I was able to work it out.

After running:
npm prefix -g

The out put should be: /user/local

If it is /Users/{username]/… etc then change it.

Changed the npm install folder to this:
npm config set prefix /usr/local

and re-installed Gulp globally.
npm install -g gulp

and Gulp-CLI globaly.
npm install -g gulp-cli

and it works!

]]>