COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20210728020637/https://github.com/npm/cli/blob/latest/configure
Permalink
Cannot retrieve contributors at this time
#! /usr/bin/env bash
# set configurations that will be "sticky" on this system,
# surviving npm self-updates.
CONFIGS=()
i=0
# get the location of this file.
unset CDPATH
CONFFILE=$( cd $( dirname " $0 " ) ; pwd -P) /npmrc
while [ $# -gt 0 ]; do
conf=" $1 "
case $conf in
--help)
echo " ./configure --param=value ..."
exit 0
;;
--* )
CONFIGS[$i ]=" ${conf: 2} "
;;
* )
CONFIGS[$i ]=" $conf "
;;
esac
let i++
shift
done
for c in " ${CONFIGS[@]} " ; do
echo " $c " >> " $CONFFILE "
done
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.