Movatterモバイル変換


[0]ホーム

URL:


Wayback Machine
671 captures
16 Aug 2019 - 05 Jun 2025
FebMARApr
21
202020212022
success
fail
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.
Collection:github.com
TIMESTAMPS
loading
The Wayback Machine - https://web.archive.org/web/20210321223105/https://github.com/npm/cli/blob/latest/configure
Skip to content
Sign up
Sign in Sign up
Permalink
latest
Switch branches/tags

cli/configure

Go to file
 
 
Cannot retrieve contributors at this time
executable file 33 lines (28 sloc) 529 Bytes
#!/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$confin
--help)
echo"./configure --param=value ..."
exit 0
;;
--*)
CONFIGS[$i]="${conf:2}"
;;
*)
CONFIGS[$i]="$conf"
;;
esac
let i++
shift
done
forcin"${CONFIGS[@]}";do
echo"$c">>"$CONFFILE"
done

[8]ページ先頭

©2009-2025 Movatter.jp